import type { CheckboxProps } from "../Checkbox/Checkbox"; /** * Switch与Checkbox组件的属性相同. */ export interface SwitchProps extends CheckboxProps { /** * 标签居左还是居右 * @default left */ labelPosition?: "left" | "right"; } export declare function Switch(props: SwitchProps): import("react").JSX.Element;