export function mergeToString(srcStrings: string[], options?: MergeToStringOptions): Promise<string>;
export type MergeToStringOptions = {
    /**
     * Aggregate testsuite time with sum instead of max
     */
    sumTime: boolean;
};
