import type { WebitelProtoDataField } from 'webitel-sdk'; type __VLS_Props = { field: WebitelProtoDataField; label?: string; required?: boolean; /** * TODO: implement validation */ v?: object; }; type __VLS_ModelProps = { modelValue?: unknown; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_18: "bool", __VLS_19: { defaultProps: { label: string; required: boolean; v: object; }; }, __VLS_29: "lookup", __VLS_30: { defaultProps: { value: unknown; clearable: boolean; trackBy: string; searchMethod: () => (params: any) => any; label: string; required: boolean; v: object; }; }, __VLS_40: "list", __VLS_41: { defaultProps: { value: unknown; multiple: boolean; clearable: boolean; trackBy: string; searchMethod: () => (params: any) => any; label: string; required: boolean; v: object; }; }, __VLS_51: "datetime", __VLS_52: { defaultProps: { value: unknown; label: string; required: boolean; v: object; }; }; type __VLS_Slots = {} & { [K in NonNullable]?: (props: typeof __VLS_19) => any; } & { [K in NonNullable]?: (props: typeof __VLS_30) => any; } & { [K in NonNullable]?: (props: typeof __VLS_41) => any; } & { [K in NonNullable]?: (props: typeof __VLS_52) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (value: unknown) => any; }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: (value: unknown) => any; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };