import { Command, flags } from '@oclif/command';
export default class Hash extends Command {
    static description: string;
    static flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        type: flags.IOptionFlag<string | undefined>;
        string: flags.IOptionFlag<string | undefined>;
        file: flags.IOptionFlag<string | undefined>;
        output: flags.IOptionFlag<string | undefined>;
    };
    static args: {
        name: string;
    }[];
    run(): Promise<void>;
    private checkParameters;
    private calculateHash;
    private getHashObject;
    private getHashType;
}
