import { ExtractPropTypes } from "vue";
export declare const UiRadioPropsOption: {
    readonly modelValue: {
        readonly type: StringConstructor;
        readonly default: "";
    };
    readonly value: {
        readonly required: true;
    };
};
export declare const UiRadioEmits: {
    change: (_ev: Event) => boolean;
    "update:modelValue": (_data: any) => boolean;
};
export type UiRadioProps = ExtractPropTypes<typeof UiRadioPropsOption>;
