import { SwitchProps } from './Switch.types'; /** * Switch component for toggling between two states (on/off). * Supports optional labels on either side of the switch. * Meets WCAG 2.1 Level AA accessibility standards. * * @example * // Basic switch * const [enabled, setEnabled] = useState(false); * setEnabled(e.target.checked)} /> * * // Switch with labels * * * // Switch with right label only * */ export declare const Switch: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; //# sourceMappingURL=index.d.ts.map