import type { EditorPackManifest } from './generate.js'; export declare const CUSTOMER_RESOURCE_URI_PREFIX = "cms-edit://customer/"; export interface EditorPackResource { uri: string; name: string; mimeType: string; text: string; } export declare function resolveEditorPackPath(explicitPath?: string): string | null; export declare function loadEditorPackManifest(packPath: string): EditorPackManifest | null; export declare function listEditorPackResources(packPath: string): EditorPackResource[]; export declare function getEditorPackResource(packPath: string, resourceName: string): EditorPackResource | null; //# sourceMappingURL=load.d.ts.map