import Checkbox from "../Checkbox/Checkbox.js";
export type SwitchProps = Omit<React.ComponentProps<typeof Checkbox>, "type" | "indeterminate" | "ref">;
/**
 * Alias for `<Checkbox type="switch">`
 */
declare const Switch: import("react").ForwardRefExoticComponent<SwitchProps & import("react").RefAttributes<HTMLInputElement>>;
export default Switch;
