import type { ManifestElement, ManifestElementAndApi } from '../types/base.types.js'; /** * Creates an element instance from a manifest. * @template {HTMLElement} ElementType * @param {ManifestElement | ManifestElementAndApi} manifest The manifest to create the element from. * @param {string} [fallbackElement] An element tag name to fall back to if the manifest does not provide one. * @returns {Promise} The created element, if successful. */ export declare function createExtensionElement(manifest: ManifestElement | ManifestElementAndApi, fallbackElement?: string): Promise;