import { ExtractPropTypes, PropType } from 'vue';
import { DirectionT } from '../_utils/types';
export declare const radioGroupProps: {
    /**
     * 单选框组双向绑定值
     */
    modelValue: {
        type: (NumberConstructor | StringConstructor | BooleanConstructor)[];
    };
    /**
     * 非受控状态时，单选框组默认值
     */
    defaultValue: {
        type: (NumberConstructor | StringConstructor | BooleanConstructor)[];
        default: string;
    };
    /**
     * 单选框组是否禁用
     */
    disabled: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * 单选框组方向 DirectionT
     */
    direction: {
        type: PropType<DirectionT>;
        default: string;
    };
};
export type RadioGroupPropsT = ExtractPropTypes<typeof radioGroupProps>;
