import { Dispatch, SetStateAction } from "react";
declare type State = boolean;
export declare const booleanStateFactory: (setState: Dispatch<SetStateAction<State>>) => {
    setTrue: () => void;
    setFalse: () => void;
    toggle: () => void;
};
export declare const useBooleanState: (initialState: State) => {
    setTrue: () => void;
    setFalse: () => void;
    toggle: () => void;
} & {
    state: boolean;
    setState: Dispatch<SetStateAction<boolean>>;
};
export {};
