/** * Representation of the "t" i18n attribute from aurelia-i18n. */ export declare class AureliaI18nAttribute implements Iterable<[string, string]> { #private; get isEmpty(): boolean; [Symbol.iterator](): MapIterator<[string, string]>; has(name: string): boolean; set(name: string, key: string): void; get(name: string): string | undefined; keys(): MapIterator; mapKeysToNames(): Map; toString(): string; static parse(value: string): AureliaI18nAttribute; }