import { ElRowProps, ElColProps } from '../../ele-app/el'; import { ProFormItemProps, ScreenSize } from '../types'; declare function __VLS_template(): { item?(_: { element: any; }): any; footer?(_: {}): any; }; declare const __VLS_component: import('vue').DefineComponent; /** 全部的表单项 */ formItems?: ProFormItemProps[]; /** 搜索表单展开状态 */ searchExpand?: boolean; /** 远程数据源请求工具 */ httpRequest?: any; /** 获取表单组件的组件引用数据方法 */ getProFormRefs?: () => Record; /** 获取并缓存代码解析结果方法 */ getAndCacheCode?: (code: string, codeResult: any) => any; /** 自动计算额外的 ElCol 份数 */ autoContentExtraCol?: boolean; /** 额外的 ElCol 属性 */ contentExtraColProps?: ElColProps; /** 编辑模式 */ editable?: boolean; }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { updateItems: (data?: ProFormItemProps[] | undefined) => void; }, string, import('vue').PublicProps, Readonly; /** 全部的表单项 */ formItems?: ProFormItemProps[]; /** 搜索表单展开状态 */ searchExpand?: boolean; /** 远程数据源请求工具 */ httpRequest?: any; /** 获取表单组件的组件引用数据方法 */ getProFormRefs?: () => Record; /** 获取并缓存代码解析结果方法 */ getAndCacheCode?: (code: string, codeResult: any) => any; /** 自动计算额外的 ElCol 份数 */ autoContentExtraCol?: boolean; /** 额外的 ElCol 属性 */ contentExtraColProps?: ElColProps; /** 编辑模式 */ editable?: boolean; }>>> & Readonly<{ onUpdateItems?: ((data?: ProFormItemProps[] | undefined) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; declare const _default: __VLS_WithTemplateSlots>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };