import { PropType } from 'vue'; import { UserComponent } from '../../ele-app/types'; import { DataItem } from '../../ele-data-table/types'; import { ProFormItemTypeData, ScreenSize } from '../../ele-pro-form/types'; import { EditConfig, BtnClickAction, CrudField, EditApi, GetAndCacheCodeFunction, CrudLocale } from '../types'; declare function __VLS_template(): Partial any>> & Partial any>> & { default?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent; /** 添加弹窗数据 */ addData: PropType; /** 修改弹窗是否打开 */ editVisible: PropType; /** 修改弹窗数据 */ editData: PropType; /** 添加配置 */ addConfig: PropType; /** 修改配置 */ editConfig: PropType; /** 字段数据 */ fields: PropType; /** 获取字段数据对应的表单项的方法 */ getAndCacheCode: { type: PropType; required: true; }; /** 高级表单组件 */ proFormComponent: PropType; /** 添加数据接口 */ addApi: PropType; /** 修改数据接口 */ editApi: PropType; /** 高级表单组件类型数据 */ itemTypeData: PropType; /** 远程数据源请求工具 */ httpRequest: (ObjectConstructor | FunctionConstructor)[]; /** 屏幕尺寸 */ screenSize: PropType; /** 国际化 */ lang: { type: PropType>; required: true; }; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { editError: (_e: Error) => void; addError: (_e: Error) => void; "update:addVisible": (_visible?: boolean | undefined) => void; "update:editVisible": (_visible?: boolean | undefined) => void; btnClick: (_action: BtnClickAction, _e: MouseEvent, _item?: DataItem | undefined) => void; addDone: (_msg?: string | undefined) => void; editDone: (_msg?: string | undefined) => void; }, string, import('vue').PublicProps, Readonly; /** 添加弹窗数据 */ addData: PropType; /** 修改弹窗是否打开 */ editVisible: PropType; /** 修改弹窗数据 */ editData: PropType; /** 添加配置 */ addConfig: PropType; /** 修改配置 */ editConfig: PropType; /** 字段数据 */ fields: PropType; /** 获取字段数据对应的表单项的方法 */ getAndCacheCode: { type: PropType; required: true; }; /** 高级表单组件 */ proFormComponent: PropType; /** 添加数据接口 */ addApi: PropType; /** 修改数据接口 */ editApi: PropType; /** 高级表单组件类型数据 */ itemTypeData: PropType; /** 远程数据源请求工具 */ httpRequest: (ObjectConstructor | FunctionConstructor)[]; /** 屏幕尺寸 */ screenSize: PropType; /** 国际化 */ lang: { type: PropType>; required: true; }; }>> & Readonly<{ onEditError?: ((_e: Error) => any) | undefined; onAddError?: ((_e: Error) => any) | undefined; "onUpdate:addVisible"?: ((_visible?: boolean | undefined) => any) | undefined; "onUpdate:editVisible"?: ((_visible?: boolean | undefined) => any) | undefined; onBtnClick?: ((_action: BtnClickAction, _e: MouseEvent, _item?: DataItem | undefined) => any) | undefined; onAddDone?: ((_msg?: string | undefined) => any) | undefined; onEditDone?: ((_msg?: string | undefined) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };