import { DeployedStackCommand } from '../../baseCommands.js';
export default class DeployCommand extends DeployedStackCommand<typeof DeployCommand> {
    static summary: string;
    static description: string;
    static examples: string[];
    static flags: {
        'no-wait': import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<void>;
}
