import { SwitchProps } from './Switch.types'; /** * Switch - A toggle switch component for boolean values * * Supports controlled and uncontrolled modes, with optional label and messages. * Uses the theme's feature color for the checked state. * * @example * ```tsx * // Controlled * setIsEnabled(checked)} * label="Enable notifications" * /> * * // Uncontrolled * * * // With error message * * ``` */ export declare const Switch: import('react').ForwardRefExoticComponent>; export default Switch; //# sourceMappingURL=Switch.d.ts.map