import type { InputHTMLAttributes, Ref } from "react"; export interface SwitchProps extends Omit, "type" | "role" | "placeholder"> { /** Label text. */ children?: React.ReactNode; /** Forwarded ref to the underlying `` element. */ ref?: Ref; } /** On/off toggle (`role="switch"`) with a built-in label; for settings that * take effect immediately. */ export declare function Switch({ children, className, disabled, ref, ...rest }: SwitchProps): import("react").JSX.Element; //# sourceMappingURL=Switch.d.ts.map