/**
 * https://simple-statistics.github.io/docs/#sumnthpowerdeviations
 */
declare function sumNthPowerDeviations(
    x: readonly number[],
    n?: number
): number;

export default sumNthPowerDeviations;
