import { ExtractPropTypes } from 'vue';
export declare const radioProps: {
    /**
     * 单选框value
     */
    value: {
        type: (NumberConstructor | StringConstructor | BooleanConstructor)[];
        required: boolean;
    };
    /**
     * 单选框双向绑定值
     */
    modelValue: {
        type: (NumberConstructor | StringConstructor | BooleanConstructor)[];
    };
    /**
     * 非受控状态时，默认是否选中
     */
    defaultChecked: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * 是否禁用
     */
    disabled: {
        type: BooleanConstructor;
        default: boolean;
    };
    /**
     * input id
     */
    inputId: {
        type: StringConstructor;
    };
};
export type RadioPropsT = ExtractPropTypes<typeof radioProps>;
