import { default as React } from 'react'; import { Size } from '../../utils/size'; type Icon = React.ForwardRefExoticComponent, "ref" | "children"> & React.RefAttributes>; interface SwitchProps { name: string; leftIcon: Icon; leftLabel: string; leftValue: LeftValue; rightIcon: Icon; rightLabel: string; rightValue: RightValue; value: LeftValue | RightValue; onChange: (value: LeftValue | RightValue) => void; size?: Size & ("lg" | "md"); } export declare const Switch: ({ name, leftIcon: LeftIcon, leftLabel, leftValue, rightIcon: RightIcon, rightLabel, rightValue, value, className, onChange, size, ...fieldSetProps }: SwitchProps & Omit, "onChange">) => React.ReactElement; export {}; //# sourceMappingURL=Switch.d.ts.map