import type { ClassConstructor, ElementAndApiLoaderProperty, ElementLoaderProperty } from '../types/utils.js'; /** * Loads the element class constructor from a manifest's `element`/`js` property. * @template {HTMLElement} ElementType * @param {ElementLoaderProperty | ElementAndApiLoaderProperty} property The manifest property to load the element from. * @returns {Promise | undefined>} The resolved element class constructor, if found. */ export declare function loadManifestElement(property: ElementLoaderProperty | ElementAndApiLoaderProperty): Promise | undefined>;