import { AuthenticatedCommand } from '../../commands-base/authenticated-command.js';
export default class Secret extends AuthenticatedCommand {
    static description: string;
    static examples: string[];
    static flags: {
        appId: import("@oclif/core/lib/interfaces/parser").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
        mode: import("@oclif/core/lib/interfaces/parser").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
        key: import("@oclif/core/lib/interfaces/parser").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
        value: import("@oclif/core/lib/interfaces/parser").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser").CustomOptions>;
    } & {
        verbose: import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
        'print-command': import("@oclif/core/lib/interfaces/parser").BooleanFlag<boolean>;
    };
    static args: {};
    DEBUG_TAG: string;
    run(): Promise<void>;
}
