import { type Dispatch, type SetStateAction } from 'react';
type useStateType<S> = [S, Dispatch<SetStateAction<S>>];
declare const useFallbackState: <T>(defaultValue: T, state?: useStateType<T>) => useStateType<T>;
export default useFallbackState;
//# sourceMappingURL=useFallbackState.d.ts.map