import type { Dispatch, SetStateAction } from 'react'; interface UseBooleanOutput { value: boolean; setValue: Dispatch>; setTrue: () => void; setFalse: () => void; toggle: () => void; } export declare function useBoolean(defaultValue?: boolean): UseBooleanOutput; export {};