export interface Dict { [index: string]: T; } export default class EntityParser { private named; constructor(named: Dict); parse(entity: string): string | undefined; }