import React from 'react'; export interface SwitchProps extends Omit, 'type'> { /** * The label text for the switch */ label?: string; /** * Helper text displayed below the switch */ helperText?: string; } /** * Switch component for boolean toggles * * @example * ```tsx * * * ``` */ export declare const Switch: React.ForwardRefExoticComponent>; //# sourceMappingURL=Switch.d.ts.map