import { HTMLAttributes, InputHTMLAttributes, RefObject } from 'react'; import type { CommonToggleProps } from './types'; interface UseToggleResult { isPressed: boolean; rootProps: HTMLAttributes; inputProps: InputHTMLAttributes; } export declare function useToggle(props: CommonToggleProps, inputRef: RefObject): UseToggleResult; export {};