import { Command } from '@oclif/core';
export default class LocalDecrypt extends Command {
    static description: string;
    static examples: string[];
    static args: {
        name: string;
        required: boolean;
        description: string;
        hidden: boolean;
    }[];
    run(): Promise<void>;
}
