import { FrameEventBus } from '@farris/devkit'; /** * 框架事件服务 * @scope FormModule */ declare class EventService { private eventBus; constructor(eventBus: FrameEventBus); trigger(eventType: string, eventData?: any, frameIds?: string[]): void; } export { EventService };