import type React from 'react'; import type { BaseProps } from '../../types/component'; export interface SwitchProps extends BaseProps { name?: string; checked?: boolean; disabled?: boolean; type?: string; onChange?: (e: any) => void; color?: string; } export declare const Switch: React.ComponentType;