/// <reference types="react" />
import './switch.scss';
/**
 * @specs https://m3.material.io/components/switch/specs
 */
export declare const Switch: import("react").ForwardRefExoticComponent<{
    checked?: boolean | undefined;
    onChange?: (() => void) | undefined;
    children?: React.ReactNode;
    disabled?: boolean | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "checked" | "disabled" | "children" | "onChange"> & import("react").RefAttributes<HTMLDivElement>>;
