import type { InputHTMLAttributes } from "vue";
import type { ClassProps } from "../../utils/interface";
export interface RadioProps extends /* @vue-ignore */ InputHTMLAttributes {
    variant?: "circle" | "rounded" | "square";
    id?: string;
    name?: string;
    value: string;
    disabled?: boolean;
}
declare let __VLS_typeProps: RadioProps & ClassProps;
type __VLS_PublicProps = {
    "modelValue"?: string;
} & typeof __VLS_typeProps;
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    "update:modelValue": (modelValue: string) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
}>, {
    disabled: boolean;
    class: any;
    id: string;
    name: string;
    variant: "circle" | "rounded" | "square";
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;
