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