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