import Singleton from "../patterns/Singleton"; interface MESSAGE_INFO { [key: string]: string; } export default class MessageSource extends Singleton { private messagePath; private message; private langPack; constructor(); load(): void; getMessageMap(filePath: string): MESSAGE_INFO; getMessage(code?: string, lang?: string): string; } export {}; //# sourceMappingURL=MessageSource.d.ts.map