import { Dict, TableInfo } from '../utils'; import { SchemaCollection } from '../schemas'; export declare class TableInfoByMessageType { private schemaColl; private tableAlias; private tabNameByLowerCase; private tabAliasByLowerCase; constructor(schemaColl: SchemaCollection, tableAlias: Dict); private getTableName; getTableInfo(msgType: string): TableInfo | null; } export declare const mapMsgTypeToTable: TableInfoByMessageType;