export interface SwitchProps {
    checked: boolean;
    label?: string;
    onChange?: (checked: boolean) => void;
}
export declare const Switch: ({ checked, label, onChange, ...props }: SwitchProps) => import("react/jsx-runtime").JSX.Element;
export default Switch;
