/**
 * https://simple-statistics.github.io/docs/#sample
 */
declare function sample<T>(x: T[], n: number, randomSource: () => number): T[];

export default sample;
