/**
 * https://simple-statistics.github.io/docs/#samplecorrelation
 */
declare function sampleCorrelation(
    x: readonly number[],
    y: readonly number[]
): number;

export default sampleCorrelation;
