import './Switch.css'; import React from 'react'; export declare const cnSwitch: import("@bem-react/classname").ClassNameFormatter; export declare const COMPONENT_NAME: "Switch"; export declare const Switch: React.ForwardRefExoticComponent<{ checked: boolean | undefined; size?: import("./types").SwitchPropSize; view?: import("./types").SwitchPropView; align?: import("./types").SwitchPropAlign; disabled?: boolean; className?: string; label?: string; onChange?: React.ChangeEventHandler; name?: string; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; autoFocus?: boolean; readOnly?: boolean; required?: boolean; step?: number | string; tabIndex?: number; inputRef?: React.Ref; children?: never; inputId?: string; } & Omit, "css" | "autoFocus" | "className" | "tabIndex" | "children" | "onFocus" | "onBlur" | "onChange" | "size" | "view" | "step" | "label" | "name" | "disabled" | "align" | "checked" | "readOnly" | "required" | "inputRef" | "inputId"> & React.RefAttributes>;