/**
 * https://simple-statistics.github.io/docs/#permutationstest
 */
declare function permutationTest(
    sampleX: number[],
    sampleY: number[],
    string?: string,
    k?: number,
    randomSource?: () => number
): number;

export default permutationTest;
