import { PropsWithChildren, ReactNode } from 'react';
import { LabelProps } from '../label/Label.js';
export interface TanstackSelectableCardRadioGroupFieldProps extends PropsWithChildren<Pick<LabelProps, 'isRequired' | 'requiredVariant'>> {
    /** The label for the radio button group. */
    label: string;
    /** Helper text to display below the radio button group. */
    helperText?: ReactNode;
}
declare const TanstackSelectableCardRadioGroupField: import('react').ForwardRefExoticComponent<TanstackSelectableCardRadioGroupFieldProps & import('react').RefAttributes<HTMLDivElement>>;
export { TanstackSelectableCardRadioGroupField };
