import { BaseComponentContext } from './BaseComponentContext.js'; export type ComponentModalContext = BaseComponentContext & { instance: { id: string; }; component: { type: string; key: string; label: string; }; self: { isIE: () => boolean; }; options: { vpat?: boolean; }; visible: boolean; children?: string; };