export declare const TEMPLATES_CATALOG_PATH = "templates/templates.json"; export declare const DEFAULT_TEMPLATE_KEY = "openui-cloud"; export type CatalogOverlay = { name: string; key: string; description: string; }; export type CatalogTemplate = { name: string; key: string; description: string; overlays: CatalogOverlay[]; }; /** Prefetch the template catalog from GitHub. */ export declare function loadTemplatesCatalog(): Promise; export declare function findCatalogTemplate(templates: CatalogTemplate[], key: string): CatalogTemplate; export declare function findCatalogOverlay(template: CatalogTemplate, key: string): CatalogOverlay; //# sourceMappingURL=templates-catalog.d.ts.map