export declare function useToggle<T = boolean>(options?: readonly [T, T]): readonly [T, (value?: React.SetStateAction<T>) => void];
