import { MouseEvent } from 'react'; import type { PropsWithChildren, HTMLAttributes } from 'react'; export type SwitchProps = PropsWithChildren, 'onChange'>> & { label?: string; value?: string; defaultValue?: string; values?: string[]; checked?: boolean; disabled?: boolean; readOnly?: boolean; onChange?: (event: MouseEvent, selectedValue: string) => void; }; export declare const Switch: { ({ label, value, defaultValue, values, checked, disabled, readOnly, onChange, ...rest }: SwitchProps): import("react/jsx-runtime").JSX.Element; displayName: string; };