declare const _default: any; export default _default; export type PodletCssSchema = { value: string; type?: string; crossorigin?: string; disabled?: boolean; hreflang?: string; title?: string; media?: string; rel?: string; as?: string; fetchpriority?: "high" | "low" | "auto"; strategy?: "lazy" | "beforeInteractive" | "afterInteractive"; scope?: "content" | "fallback" | "all"; }; export type PodletJavaScriptSchema = { value: string; type?: string; referrerpolicy?: string; crossorigin?: string; integrity?: string; nomodule?: boolean; async?: boolean; defer?: boolean; fetchpriority?: "high" | "low" | "auto"; strategy?: "lazy" | "beforeInteractive" | "afterInteractive"; scope?: "content" | "fallback" | "all"; }; export type PodletProxySchema = { target: string; name: string; }; export type PodletManifestSchema = { name: string; version: string; content: string; fallback?: string; js?: Array; css?: Array; proxy?: Record | Array; team?: string; };