import { AviatorType } from './types'; export declare class SymbolTable { private parent; private symbols; constructor(parent?: SymbolTable | null); define(name: string, type: AviatorType): void; resolve(name: string): AviatorType | null; createChild(): SymbolTable; } //# sourceMappingURL=symbol_table.d.ts.map