import { CheckboxProps } from "@radix-ui/react-checkbox"; export type CheckboxFieldProps = Readonly<{ label: React.ReactNode; tooltip?: React.ReactNode; isTooltipDisabled?: boolean; className?: string; description?: string | React.ReactNode; variant?: "editor"; } & CheckboxProps>; export declare const CheckboxField: ({ label, className, description, tooltip, isTooltipDisabled, variant, ...rest }: CheckboxFieldProps) => import("react").JSX.Element; //# sourceMappingURL=CheckboxField.d.ts.map