import { ExecRenderBaseCommand } from "../../lib/basecommands/ExecRenderBaseCommand.js"; import { ReactNode } from "react"; type Result = { appInstallationId: string; }; export declare class Copy extends ExecRenderBaseCommand { static description: string; static args: { "installation-id": import("@oclif/core/interfaces").Arg; }; static flags: { description: import("@oclif/core/interfaces").OptionFlag; "install-path": import("@oclif/core/interfaces").OptionFlag; quiet: import("@oclif/core/interfaces").BooleanFlag; }; protected exec(): Promise; protected render(executionResult: Result): ReactNode; } export {};