import React, { ReactNode } from 'react'; import { TLabel } from '../label'; export declare type TSwitch = TLabel & { checked?: boolean; children?: ReactNode; color?: string; inputRef?: React.Ref; inputsProps?: any; onChange?: (e: React.FormEvent) => void; right?: boolean; shade?: '50' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | string | number; }; export declare const Switch: React.ForwardRefExoticComponent void) | React.RefObject | null | undefined; inputsProps?: any; onChange?: ((e: React.FormEvent) => void) | undefined; right?: boolean | undefined; shade?: string | number | undefined; } & React.RefAttributes>; export default Switch;