///
import * as SwitchPrimitive from "@radix-ui/react-switch";
export type SwitchProps = {
label?: string;
labelPosition?: "left" | "right";
className?: string;
disabled?: boolean;
} & SwitchPrimitive.SwitchProps;
/** A control that allows the user to toggle between checked and not checked. Intended for usage in a list where the parent element will supply a width.
* Built using Radix Switch, styled for Stellar. Refer to the Radix docs for complete documentation of available properties aside from the ones
* added by this wrapper component.
*
* [Figma Link](https://www.figma.com/file/a696svN2S7YNlZRYAkeLob/Stellar-Design-System?type=design&node-id=5379%3A7122&t=hcGqixx7MZ4qSgbd-1),
* [Radix Docs](https://www.radix-ui.com/docs/primitives/components/switch)
*/
export declare const Switch: import("react").ForwardRefExoticComponent<{
label?: string | undefined;
labelPosition?: "left" | "right" | undefined;
className?: string | undefined;
disabled?: boolean | undefined;
} & SwitchPrimitive.SwitchProps & import("react").RefAttributes>;