export declare const useBoolean: (initialValue?: boolean) => {
    value: boolean;
    onTrue: () => void;
    onFalse: () => void;
    toggle: () => void;
};
//# sourceMappingURL=useBoolean.d.ts.map