import type { AirshipPluginWrapper } from './AirshipPlugin'; /** * Manages locale used by Airship messaging. */ export declare class AirshipLocale { private readonly plugin; constructor(plugin: AirshipPluginWrapper); /** * Sets the locale override. * @param localeIdentifier The locale identifier. * @returns A promise. */ setLocaleOverride(localeIdentifier: string): Promise; /** * Clears the locale override. * @returns A promise. */ clearLocaleOverride(): Promise; /** * Gets the current locale. * @returns A promise with the result. */ getLocale(): Promise; }