export declare class LetterUtil { /** It returns the value of Intereset */ static getValueInterest(locale: string): "To whom it May concern" | "À qui cela peut intéresser" | "A chi potrebbe interessare" | "Für wen es interessant sein könnte" | "A quien pueda interesar"; /** It returns the value of Type of Document */ static getValueTypeDoc(locale: string): "Document type" | "Type de document" | "Tipo di documento" | "Art des Dokuments" | "Tipo de documento"; /** It returns the value of mrs */ static getValueMrs(locale: string): "Mrs." | "Madame" | "Signora" | "Dame" | "Señora"; /** It returns the value of sir */ static getValueSir(locale: string): "Mr." | "Seigneur" | "Signore" | "Herr" | "Señor"; /** It returns the value of sir */ static getValueSirs(locale: string): "Mr. / Ms." | "Messieurs" | "Signori" | "Meine herr" | "Señores"; /** It returns the value of name */ static getValueName(locale: string): "Nombres" | "Name" | "Noms" | "Nomi" | "Namen"; /** It returns the value of Lastname */ static getValueLastname(locale: string): "Apellidos" | "Lastname" | "Nom de famille" | "Cognomi" | "Nachname"; /** It returns the value of charge */ static getValueCharge(locale: string): "Cargo" | "Position" | "Charge" | "Ufficio" | "Aufladen"; /** It returns the value of Organización */ static getValueOrg(locale: string): "Organization" | "Organisation" | "Organizzazione" | "Organización"; static getDestination(locale: string): "To this person..." | "à cette personne..." | "a questa persona..." | "zu dieser Person..." | "A ésta persona..."; /** It returns the value of Address */ static getValueAddress(locale: string): "Address 1" | "Adresse 1" | "Indirizzo 1" | "Dirección 1"; /** It returns the value of Details */ static getValueDetails(locale: string): "Details 2" | "Les détails 2" | "Dettagli 2" | "Einzelheiten 2" | "Dirección 2"; /** It returns the value of City */ static getValueCity(locale: string): "City" | "Ville" | "Città" | "Stadt" | "Ciudad"; /** It returns the value of Country */ static getValueCountry(locale: string): "Country" | "Pays" | "Paese" | "Land" | "País"; /** It returns the value of Directed */ static getValueDirected(locale: string): "¿To whom?" | "¿Pour qui est-ce?" | "¿Per chi è?" | "Für wen ist es?" | "Dirigida a"; static getComplementaryGreeting(locale: string): "Dear" | "Cher" | "Caro" | "Schatz" | "Estimado/a"; static getComplementaryGreetingSirMrs(locale: string): "Dear Mr/Ms" | "Cher Mesieurs" | "Egregi Signori" | "Sehr Geehrte Herren" | "Estimado/a Sr/Sra"; }