import { SfCommand } from '@salesforce/sf-plugins-core';
export type OrgAuthShowAccessTokenResult = {
    accessToken: string;
};
export default class OrgAuthShowAccessToken extends SfCommand<OrgAuthShowAccessTokenResult> {
    static readonly summary: string;
    static readonly description: string;
    static readonly examples: string[];
    static readonly flags: {
        'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
        'no-prompt': import("@oclif/core/interfaces").BooleanFlag<boolean>;
    };
    run(): Promise<OrgAuthShowAccessTokenResult>;
}
