import type { LocationInfo } from './tree'; export declare class OutputCollector { strings: string[]; map: any[]; /** @todo - for output tracking */ line: number; column: number; add(str: string, originalLocation?: LocationInfo): void; toString(): string; }