import * as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import { type VariantProps } from 'class-variance-authority'; declare const checkboxVariants: (props?: ({ size?: "base" | "lg" | "sm" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface CheckboxProps extends React.ComponentPropsWithoutRef, VariantProps { iconClassName?: string; } /** * Checkbox - 复选框 * * @description 允许用户进行多选操作的复选框组件,支持不同尺寸和自定义图标 */ declare const Checkbox: React.ForwardRefExoticComponent>; export default Checkbox; export type { CheckboxProps };