import { ErrorUnion, LanguagePackStringsUnion } from '../outputs'; /** * Returns strings from a language pack in the current localization target by their * keys. Can be called before authorization * @param {Object} params * @param {string} [params.languagePackId] - Language pack identifier of the strings * to be returned * @param {string[]} [params.keys] - Language pack keys of the strings to be returned; * leave empty to request all available strings * @param {Object} state * @returns {LanguagePackStringsUnion | ErrorUnion} */ export declare type GetLanguagePackStringsMethod = (params: GetLanguagePackStringsParams, state?: Record) => Promise; export interface GetLanguagePackStringsParams { /** Language pack identifier of the strings to be returned */ languagePackId?: string; /** * Language pack keys of the strings to be returned; leave empty to request all available * strings */ keys?: string[]; }