/** * Shared flat-text formatter for aft_callgraph responses (agent + themed TUI). */ export interface CallgraphTheme { fg(role: string, text: string): string; } export interface CallgraphFormatOptions { includeUnresolved?: boolean; } export declare const PLAIN_CALLGRAPH_THEME: CallgraphTheme; export declare function formatCallgraphSections(op: string, response: unknown, theme?: CallgraphTheme, options?: CallgraphFormatOptions): string[]; //# sourceMappingURL=callgraph-format.d.ts.map