import * as React from "react"; export interface RadioCardProps extends Omit, 'onChange' | 'content'> { label: string; description?: string; icon?: React.ReactNode; badge?: React.ReactNode; checked?: boolean; onChange?: (checked: boolean) => void; disabled?: boolean; name?: string; value?: string; content?: React.ReactNode; customStyles?: { root?: React.CSSProperties; content?: React.CSSProperties; label?: React.CSSProperties; description?: React.CSSProperties; }; } /** * RadioCard component for selectable card options * * Used for: * - Plan selection with radio button * - Option selection in cards * - Settings with visual cards * * @example * ```tsx * } * badge={Free} * checked={selected === 'trial'} * onChange={() => setSelected('trial')} * /> * ``` */ export declare const RadioCard: React.ForwardRefExoticComponent>; //# sourceMappingURL=radio-card.d.ts.map