/** * Simple util to quickly handle on/off states. */ export declare const useToggle: (initialState?: boolean) => [boolean, () => void];