import { Dispatch, SetStateAction } from 'react'; interface UseBooleanOutput { value: boolean; setValue: Dispatch>; setTrue: () => void; setFalse: () => void; toggle: () => void; isTrue: boolean; isFalse: boolean; } export declare function useBoolean(defaultValue?: boolean): UseBooleanOutput; export {}; //# sourceMappingURL=use-boolean.d.ts.map