type DefaultPropsTypes = { name?: string; }; declare const defaultProps: DefaultPropsTypes; type Props = { onClick?: (args: any) => void; onBlur?: (args: any) => void; checked?: boolean; color?: string; size?: number; } & typeof defaultProps; declare const Switch: { ({ onClick, onBlur, name, checked, size, color }: Props): JSX.Element; defaultProps: { size: number; }; }; export default Switch;