declare const useToggle: (initialValue?: boolean) => [isToggled: boolean, toggle: (state?: boolean) => void];

export default useToggle;
