import type { ModuleNode, GraphEdge } from '../graph/graph-types.js'; export interface SectionContext { readonly mod: ModuleNode; readonly edges: readonly GraphEdge[]; readonly resolveString: (ref: string | null) => string | null; readonly resolveLink: (nodeId: string, fromModule: string) => string; } export declare function renderActorsSection(ctx: SectionContext): string[]; export declare function renderDomainSection(ctx: SectionContext): string[]; export declare function renderRulesSection(ctx: SectionContext): string[]; export declare function renderWorkflowsSection(ctx: SectionContext): string[]; export declare function renderActionsSection(ctx: SectionContext): string[]; export declare function renderEventsSection(ctx: SectionContext): string[]; export declare function renderSchedulesSection(ctx: SectionContext): string[]; export declare function renderSurfacesSection(ctx: SectionContext): string[]; export declare function renderDesignSection(ctx: SectionContext): string[]; export declare function renderStorageSection(ctx: SectionContext): string[]; export declare function renderGovernanceSection(ctx: SectionContext): string[]; export declare function renderTestsSection(ctx: SectionContext): string[]; //# sourceMappingURL=section-renderers.d.ts.map