import * as React from 'react';

interface SwitchProps {
    checked?: boolean;
    defaultChecked?: boolean;
    onCheckedChange?(v: boolean): void;
    disabled?: boolean;
    id?: string;
    'aria-label'?: string;
    'aria-describedby'?: string;
    className?: string;
}
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;

export { Switch, type SwitchProps };
