import { SfCommand } from '@salesforce/sf-plugins-core';
import { PackageAncestryNodeData } from '@salesforce/packaging';
export type DisplayAncestryCommandResult = PackageAncestryNodeData | string | void;
export declare class PackageVersionDisplayAncestryCommand extends SfCommand<DisplayAncestryCommandResult> {
    static readonly summary: string;
    static readonly examples: string[];
    static readonly deprecateAliases = true;
    static readonly aliases: string[];
    static readonly flags: {
        loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        'target-dev-hub': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
        'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
        package: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
        'dot-code': import("@oclif/core/interfaces").BooleanFlag<boolean>;
        verbose: import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<DisplayAncestryCommandResult>;
}
