60 lines
1.5 KiB
TypeScript
60 lines
1.5 KiB
TypeScript
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
label: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
disabled: {
|
|
type: import("vue").PropType<boolean>;
|
|
default: boolean;
|
|
};
|
|
name: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
value: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
modelValue: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
label: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
disabled: {
|
|
type: import("vue").PropType<boolean>;
|
|
default: boolean;
|
|
};
|
|
name: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
value: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
modelValue: {
|
|
type: import("vue").PropType<string>;
|
|
default: string;
|
|
};
|
|
}>> & {
|
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
}, {
|
|
label: string;
|
|
disabled: boolean;
|
|
name: string;
|
|
value: string;
|
|
modelValue: string;
|
|
}, {}>, {
|
|
default?(_: {}): any;
|
|
}>;
|
|
export default _default;
|
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
new (): {
|
|
$slots: S;
|
|
};
|
|
};
|