import type { ReactElement, ReactNode } from 'react'; import type { FormFieldContextValue } from './FormFieldContext'; import { type LabelRootProps } from './Label'; type LabelRadioCardRootProps = LabelRootProps & { orientation?: 'vertical'; contents: ReactNode; }; declare const LabelRadioCard: import("react").MemoExoticComponent & { heading?: ReactNode; description?: ReactNode; icon?: ReactElement; badgeContent?: ReactNode; } & import("react").RefAttributes, "ref"> & FormFieldContextValue & import("react").RefAttributes>>; export { LabelRadioCard };