import { type LitElement } from 'lit'; import { type Package } from './manifest.js'; export type Constructor = new (...args: any[]) => T; export interface ManifestMixinInterface { src?: string; manifest?: Package; only?: string[]; selected?: string; jsonFetched: Promise; } export declare const emptyDataWarning: import("lit-html").TemplateResult<1>; export declare const ManifestMixin: >(base: T) => T & Constructor; //# sourceMappingURL=manifest-mixin.d.ts.map