import { BaseComponentContext } from './BaseComponentContext.js'; export type FieldsetContext = BaseComponentContext & { component: { legend?: string; collapsible?: boolean; tooltip?: string; }; instance?: { id: string; }; collapsed?: boolean; children?: string; nestedKey?: string; footer?: string; };