export declare function useLazyState<T>(initialValue: T, asyncSetter: (current: T) => Promise<T>): [T, () => Promise<void>];
