interface SwitchProps {
    value: boolean;
    onValueChange?: () => void;
    color: string;
}
declare const Switch: ({ value, onValueChange, color }: SwitchProps) => JSX.Element;
export default Switch;
//# sourceMappingURL=Switch.d.ts.map