import { SelectOption } from 'star-horse-lowcode'; import { FormConfig } from '../../../../types'; import { PreOrPendEventConfig } from '../composables/usePreOrPendEvent'; type __VLS_Props = { visible: boolean; /** 当前组件的 formProps */ formProps: any; /** 当前组件类型 */ itemType: string; /** 当前事件配置 */ eventConfig: PreOrPendEventConfig; /** 当前按钮标题(用于对话框标题展示) */ buttonTitle?: string; /** 数组型插槽的索引 */ index?: number; /** 表单字段列表(联动策略使用) */ formFields: SelectOption[]; /** 设计器模式 */ model?: string; optional?: FormConfig; }; declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & { close: () => any; merge: (config: PreOrPendEventConfig) => any; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onClose?: () => any; onMerge?: (config: PreOrPendEventConfig) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;