import { Dispatch, SetStateAction } from 'react';

type UseBooleanReturn = {
    value: boolean;
    setValue: Dispatch<SetStateAction<boolean>>;
    setTrue: () => void;
    setFalse: () => void;
    toggle: () => void;
};
export declare function useBoolean(defaultValue?: boolean): UseBooleanReturn;
export {};
