import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { registryId: string; }; export declare class Create extends ExecRenderBaseCommand { static summary: string; static flags: { uri: import("@oclif/core/interfaces").OptionFlag; description: import("@oclif/core/interfaces").OptionFlag; username: import("@oclif/core/interfaces").OptionFlag; password: import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; "project-id": import("@oclif/core/interfaces").OptionFlag; }; protected exec(): Promise; protected render({ registryId }: Result): ReactNode; private getPassword; } export {};