export interface UseToggleProps { initialState?: boolean; } export declare const useToggle: (args?: UseToggleProps) => { active: boolean; toggle: () => void; toggleOff: () => void; toggleOn: () => void; };