import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
declare const _sfc_main: DefineComponent<{
    readonly modelValue: StringConstructor;
    readonly name: StringConstructor;
}, {
    props: any;
    emit: (event: "update:modelValue", ...args: any[]) => void;
    proxy: Readonly<{
        "onUpdate:modelValue": ((...args: any[]) => any) | undefined;
        modelValue: string | undefined;
        name: string | undefined;
    }>;
    input: (e: Event) => void;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly modelValue?: unknown;
    readonly name?: unknown;
} & {} & {
    modelValue?: string | undefined;
    name?: string | undefined;
}> & {
    "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}, {}>;
export default _sfc_main;
