import { RadioProps } from '../../../components/Form/Radio'; export interface RadioFieldProps extends RadioProps { name: string; value: string; } export declare function RadioField({ name, id, label, className, disabled, value, defaultChecked, labelClassName, orientation, }: RadioFieldProps): import("react/jsx-runtime").JSX.Element;