/// import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; export type CheckboxProps = { label?: string; labelPosition?: "left" | "right"; className?: string; disabled?: boolean; } & CheckboxPrimitive.CheckboxProps; export declare const CheckSVG: () => import("react/jsx-runtime").JSX.Element; /** 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 Dialog, 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/checkbox) */ export declare const Checkbox: import("react").ForwardRefExoticComponent<{ label?: string | undefined; labelPosition?: "left" | "right" | undefined; className?: string | undefined; disabled?: boolean | undefined; } & CheckboxPrimitive.CheckboxProps & import("react").RefAttributes>;