import { ButtonHTMLAttributes } from 'react'; export interface SwitchProps extends Omit, 'onChange'> { checked: boolean; onChange: (next: boolean) => void; } export declare const Switch: ({ checked, disabled, onChange, className, ...rest }: SwitchProps) => import("react/jsx-runtime").JSX.Element; export default Switch; //# sourceMappingURL=Switch.d.ts.map