import { ITextMap } from './types'; import { IPlayerConfig } from '../../core/config'; export default class TextMap implements ITextMap { static moduleName: string; static dependencies: string[]; private _textMap; constructor({ config }: { config: IPlayerConfig; }); get(id: string, args: any, defaultText?: string | Function): string; destroy(): void; }