import { Command } from '@oclif/core';
export default class ReleaseFinalizeCmd extends Command {
    static description: string;
    static examples: string[];
    static args: {
        commitOrId: import("@oclif/core/lib/interfaces").Arg<string | number, Record<string, unknown>>;
    };
    static authenticated: boolean;
    run(): Promise<void>;
}
