type IState = string | number | boolean | undefined; export interface Actions { setLeft: () => void; setRight: () => void; toggle: (value?: T) => void; } export declare function useToggle(defaultValue: T, reverseValue?: U): [T | U, Actions]; export {}; //# sourceMappingURL=index.d.ts.map