/** * A hook like useState that allows you to use await the setter */ export declare const useStateWithAwait: (initialState: T) => [T, (newValue: T) => Promise]; //# sourceMappingURL=useStateWithAwait.d.ts.map