export interface CardCheckboxOption { title?: string; desc?: string; value?: any; } export interface CardCheckboxProps { width?: string | number; options: CardCheckboxOption[]; value?: any[]; defaultValue?: any[]; onChange?: (value: any[]) => void; } export declare const CardCheckbox: ({ width, options, ...props }: CardCheckboxProps) => import("react/jsx-runtime").JSX.Element;