import { FC } from 'react'; import { SwitchProps } from './types/Switch.props.ts'; /** * A styled switch control built on top of `@base-ui/react/switch`. * * Supports controlled (`checked` + `onCheckedChange`) and uncontrolled * (`defaultChecked`) modes, plus an optional inline `label`. * * @example * ```tsx * * ``` */ declare const Switch: FC; export default Switch;