import type { InputHTMLAttributes, Ref } from "react"; export interface SwitchProps extends Omit, "type" | "role"> { /** Label text. */ children?: React.ReactNode; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } export declare function Switch({ children, className, disabled, ref, ...rest }: SwitchProps): import("react").JSX.Element; //# sourceMappingURL=Switch.d.ts.map