import { NameSpaces } from './Namespace'; export interface SymbolId { namespaceIndex: number; symbolIndex: number; } export declare function nameOfSymbol(namespaces: NameSpaces, symbolId: SymbolId): string; export declare function allSymbols(namespaces: NameSpaces): string[]; export declare function symbolIdOf(namespaces: NameSpaces, symbol: string): SymbolId | undefined;