import type { ComponentInstance } from './ComponentInstance'; export interface FormField { name: string; label: string; component: ComponentInstance; [key: string]: any; } export interface PageInfo { pageId?: string; title?: string; busiObjectId?: string; }