import { FC, InputHTMLAttributes, Ref } from 'react'; export interface SwitchHiddenInputProps extends InputHTMLAttributes { /** * Ref forwarded to the underlying native `` element */ ref?: Ref; } /** * SwitchHiddenInput * * A visually hidden native `` that provides * form integration and accessibility for the `Switch` component. * * Purpose: * - Acts as the form-associated control for `Switch` * - Enables native keyboard interaction, form submission, and * screen reader support * - Separates visual presentation (custom switch UI) from semantics */ export declare const SwitchHiddenInput: FC;