import type { Ref } from 'vue'; export declare type Updater = (prev: State) => State; /** * Execute code before next frame but async */ export declare function useLayoutState(defaultState: State): [Ref, (updater: Updater) => void];