export interface SwtichProps { disabled?: boolean; options: any[]; /** callback to get value */ onChange?: (value: string | number | boolean | undefined) => void; /** props to set defaultvalue */ defaultValue?: string | number | boolean; name?: string; 'aria-label'?: string; required?: boolean; } declare const Switch: (props: SwtichProps) => import("react/jsx-runtime").JSX.Element; export default Switch;