import { RootProps } from './radio-card-group-root'; import { GroupLabelProps } from './radio-card-group-label'; import { TitleProps } from './radio-card-group-item-title'; import { BodyProps } from './radio-card-group-item-body'; import { ItemProps } from './radio-card-group-item'; export declare const RadioCardGroup: import('react').ForwardRefExoticComponent, "ref"> & { defaultValue?: string; disabled?: boolean; name?: string; required?: boolean; value?: string; onValueChange?: (value: string) => void; orientation?: "horizontal" | "vertical"; dir?: "ltr" | "rtl"; loop?: boolean; } & import('react').RefAttributes> & { GroupLabel: import('react').ForwardRefExoticComponent<(({ id?: string; asChild?: false; } & { as?: "h2"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h3"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h4"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h5"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">) | ({ id?: string; asChild?: false; } & { as?: "h6"; asChild?: false; } & Omit, HTMLHeadingElement>, "ref">)) & import('react').RefAttributes>; Item: import('react').ForwardRefExoticComponent, "ref"> & { value: string; children: React.ReactNode; imageUrl?: string; } & import('react').RefAttributes>; Title: import('react').ForwardRefExoticComponent, HTMLHeadingElement>, "ref"> & { asChild?: boolean; } & import('react').RefAttributes>; Body: import('react').ForwardRefExoticComponent>; }; export type RadioCardGroupProps = { Root: RootProps; GroupLabel: GroupLabelProps; Item: ItemProps; Title: TitleProps; Body: BodyProps; };