import type { StylesType } from "../../types/android"; /** * Sets the specified attributes for the AppTheme style. * * @param {Partial} attributes - The attributes to set. * @returns {void} */ export declare const setAppThemeAttributes: (attributes: Partial) => Promise; /** * Adds the specified elements to the AppTheme style. * * @param {StylesType.StyleElements} elements - The elements to add. * @returns {void} */ export declare const addAppThemeElements: (elements: StylesType.StyleElements) => Promise;