import { create } from './commands/create'; import { sync } from './commands/sync'; declare const provider: { id: string; category: string; version: string; capabilities: ("zora.create" | "zora.sync")[]; commands: ({ readonly path: readonly ["create"]; readonly capability: "zora.create"; readonly summary: "Materialize a canonical ZORA component for a target platform."; } | { readonly path: readonly ["sync"]; readonly capability: "zora.sync"; readonly summary: "Regenerate the declared ZORA web materialization."; })[]; handlers: ({ path: readonly ["create"]; handler: typeof create; } | { path: readonly ["sync"]; handler: typeof sync; })[]; }; export default provider; //# sourceMappingURL=index.d.ts.map