import type { DId, DSize } from '../../utils/types'; import type { DFormControl } from '../form'; import type { DRadioItem } from './RadioGroupRenderer'; import React from 'react'; export interface DRadioGroupProps extends Omit, 'children'> { dFormControl?: DFormControl; dList: DRadioItem[]; dModel?: V | null; dName?: string; dDisabled?: boolean; dType?: 'outline' | 'fill'; dSize?: DSize; dVertical?: boolean; onModelChange?: (value: V) => void; } export declare function DRadioGroup(props: DRadioGroupProps): JSX.Element | null;