interface ZoraSyncCommandRequest { readonly argv: readonly string[]; readonly context: { readonly cwd: string; writeStderr(text: string): void; writeStdout(text: string): void; }; } /*** Reconcile the declared web component set from the installed ZORA provider. */ export declare function sync(request: ZoraSyncCommandRequest): Promise<{ readonly exitCode: number; }>; export {}; //# sourceMappingURL=sync.d.ts.map