export declare const outputFormat: {
    table: ({
        header: string;
        property: string;
        transform?: undefined;
    } | {
        header: string;
        property: string;
        transform: (val: any) => boolean;
    })[];
    json: string[];
};
