import { AbstractCommand } from '../../classes/AbstractCommand';
export default class SecretKey extends AbstractCommand {
    static description: string;
    static examples: string[];
    static flags: {
        len: import("@oclif/parser/lib/flags").IOptionFlag<number>;
    };
    run(): Promise<void>;
}
