import { LegacyCommand, CommandOptions } from '../../legacy-command';
export default class CatObject implements LegacyCommand {
    name: string;
    description: string;
    private: boolean;
    alias: string;
    opts: CommandOptions;
    action([hash]: [string], { pretty, stringify }: {
        pretty: boolean;
        stringify: boolean;
    }): Promise<any>;
    report(file: any): string;
}
