import { Random as FCRandom } from "fast-check"; /** * Shuffle a string given a random generator from fast-check * * @param mrng Random number generator provided by fast-check * @param s String to be randomly shuffled */ export declare const shuffle: (mrng: FCRandom, s: string) => string;