import { BaseComponentContext } from './BaseComponentContext.js'; import { PanelComponent } from '@formio/core'; export type PanelContext = BaseComponentContext & { component: PanelComponent & { collapsible: boolean | undefined; title: string; }; children: string; nestedKey: string; builder: boolean; collapsed: boolean; instance: { id: string; }; };