/** * Measures the execution time of two functions and returns the result based on the experiment configuration. * This is used to compare the execution of AggregatingMergeTrees with the existing ReplacingMergeTree execution. */ export declare const measureAndReturn: (args: { operationName: string; projectId: string; input: T; existingExecution: (input: T) => Promise; newExecution: (input: T) => Promise; minStartTime?: Date; }) => Promise; //# sourceMappingURL=measureAndReturn.d.ts.map