import { ToggleProps } from './types/Toggle.props.ts'; import { FC } from 'react'; /** * Two-state toggle button backed by Base UI Toggle. Supports text mode * (requires `label`) and icon-only mode (pass `icon`). Accepts * `variant` (outlined|ghost), semantic `color`, `size`, and the full * Base UI controlled/uncontrolled state contract. */ declare const Toggle: FC; export default Toggle;