import { Checkbox as CheckboxPrimitive } from 'radix-ui'; import type { ComponentPropsWithoutRef } from 'react'; type CheckedState = CheckboxPrimitive.CheckedState; import { SvgBox } from './SvgBox'; declare const CheckboxIcon: ({ checked, ...props }: { checked: CheckboxPrimitive.CheckedState; } & Omit, "viewBoxSize" | "size">, "children">) => import("react/jsx-runtime").JSX.Element; declare const Checkbox: import("react").MemoExoticComponent, "ref">, "defaultChecked" | "checked"> & { variant?: "default" | "highContrast"; checked: CheckboxPrimitive.CheckedState | null | undefined; } & import("react").RefAttributes>>; export type { CheckedState }; export { Checkbox, CheckboxIcon };