import type { StringsType } from "../../types/android"; /** * Adds new resources elements to the XML object. * * @param elements - The elements to add to the XML object. */ export declare const addResourcesElements: (elements: StringsType.StringsElements) => Promise; /** * Adds new items to an existing string array element. * * @param elements - The elements to add to the string array element. * @param name - The name of the string array element. */ export declare const addStringArrayElements: (elements: StringsType.StringArrayElements, name: string) => Promise; /** * Adds new items to an existing plurals element. * * @param elements - The elements to add to the plurals element. * @param name - The name of the plurals element. */ export declare const addPluralsElements: (elements: StringsType.PluralsElements, name: string) => Promise;