interface ZoraCreateCommandRequest { readonly argv: readonly string[]; readonly context: { readonly cwd: string; writeStderr(text: string): void; writeStdout(text: string): void; }; } /*** Add one web component to project desired state and reconcile its shared runtime. */ export declare function create(request: ZoraCreateCommandRequest): Promise<{ readonly exitCode: number; }>; export {}; //# sourceMappingURL=create.d.ts.map