import type { AndroidManifestType } from "../../types/android"; /** * Updates the attributes of the manifest element in AndroidManifest.xml * * @param {Partial} attributes - An object containing the attributes to update * @returns {void} */ export declare const setManifestAttributes: (attributes: Partial) => Promise; /** * Updates the attributes of the application element in AndroidManifest.xml * * @param {Partial} attrbutes - An object containing the attributes to update * @param {string} [applicationName='.MainApplication'] - Name of the application element to update * @returns {void} */ export declare const setApplicationAttributes: (attrbutes: Partial, applicationName?: string) => Promise; /** * Sets attributes of the specified activity in the AndroidManifest.xml file. * * @param {Partial} attributes - The attributes to set. * @param {string} [applicationName='.MainApplication'] - The name of the application element. * @param {string} [activityName='.MainActivity'] - The name of the activity element. */ export declare const setActivityAttributes: (attrbutes: Partial, applicationName?: string, activityName?: string) => Promise; /** * Adds elements to the specified application in the AndroidManifest.xml file. * * @param {AndroidManifestType.ManifestApplicationElements} elements - The elements to add. * @param {string} [applicationName='.MainApplication'] - The name of the application element. */ export declare const addApplicationEelements: (elements: AndroidManifestType.ManifestApplicationElements, applicationName?: string) => Promise; /** * Adds elements to the specified activity in the AndroidManifest.xml file. * * @param {AndroidManifestType.ManifestActivityElements} elements - The elements to add. * @param {string} [applicationName='.MainApplication'] - The name of the application element. * @param {string} [activityName='.MainActivity'] - The name of the activity element. */ export declare const addActivityElements: (elements: AndroidManifestType.ManifestActivityElements, applicationName?: string, activityName?: string) => Promise; /** * Adds elements to the AndroidManifest.xml file. * * @param {AndroidManifestType.AndroidManifestElements} elements - The elements to add. */ export declare const addManifestElements: (elements: AndroidManifestType.AndroidManifestElements) => Promise;