import React from "react"; import { type RadioProps } from "../Form/Radio/Radio"; export type RadioCardProps = { label: string; readOnly?: boolean; renderContent?: (params: { isSelected: boolean; }) => React.ReactNode; } & Omit; export declare const RadioCard: React.ForwardRefExoticComponent<{ label: string; readOnly?: boolean; renderContent?: (params: { isSelected: boolean; }) => React.ReactNode; } & Omit & React.RefAttributes>;