import { LanguagePackInfoInput } from '../inputs'; import { ErrorUnion, OkUnion } from '../outputs'; /** * Edits information about a custom local language pack in the current localization * target. Can be called before authorization * @param {Object} params * @param {LanguagePackInfoInput} [params.info] - New information about the custom * local language pack * @param {Object} state * @returns {OkUnion | ErrorUnion} */ export declare type EditCustomLanguagePackInfoMethod = (params: EditCustomLanguagePackInfoParams, state?: Record) => Promise; export interface EditCustomLanguagePackInfoParams { /** New information about the custom local language pack */ info?: LanguagePackInfoInput; }