import { HTMLAttributes, InputHTMLAttributes, RefObject } from 'react';
import { CommonToggleProps } from '../toggle';
export interface UseSwitchResult {
isPressed: boolean;
rootProps: HTMLAttributes;
inputProps: InputHTMLAttributes;
}
export declare function useSwitch(props: CommonToggleProps, inputRef: RefObject): UseSwitchResult;