import * as SwitchPrimitives from '@radix-ui/react-switch'; import * as React from 'react'; /** * Props for the Switch component. Extends Radix Switch Root props. * @property {boolean} [checked] - The checked state of the switch. * @property {boolean} [disabled] - If true, the switch will be disabled. */ export type SwitchProps = React.ComponentPropsWithoutRef; /** * Switch - A toggle control for binary options. * @returns {JSX.Element} The rendered Switch component. * @component */ declare const Switch: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export { Switch }; //# sourceMappingURL=switch.d.ts.map