export interface StackItem { symbol: string; source: string; graphId?: string; nodeUid?: string; } export declare function parseStack(stack: string): StackItem[];