declare const useSafeState: (initialValue: any) => any[];
export declare const useSafeStateWithReducer: (initialValue: any) => any[];
export declare const useSafeStateWithReducerGeneric: <T>(initialValue: T) => (T | ((value: T) => void))[];
export declare const useSafeStateGeneric: <T>(initialValue: T) => (T | ((value: T) => void))[];
export default useSafeState;
