import CommandBase from '../../command.base.js';
export default class DockerUpdateImageVersion extends CommandBase<typeof DockerUpdateImageVersion> {
    static description: string;
    static usage: string;
    static examples: string[];
    static args: {
        version: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>;
    };
    static flags: {
        services: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string[], import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
        'file-path': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>;
    };
    run(): Promise<void>;
}
