/**
 * @type {TransformerMeta}
 */
export const meta: TransformerMeta;
/**
 * @type {TransformFunction<Report,Report>}
 */
export const transform: TransformFunction<Report, Report>;
export type Report = import("../../diff/node_modules/@report-toolkit/common/src/report.js").Report;
export type TransformerMeta = {
    id: string;
    description?: string;
    input?: string[];
    output: string;
    alias?: string[];
    defaults?: any;
};
export type TransformFunction<T, U> = (opts?: any) => import("rxjs").OperatorFunction<T, U>;
