export type RandomStringGenerator = () => string;
export declare const generateRandomStrings: (numberOfStrings: number, randomStringGenerator: RandomStringGenerator) => Set<string>;
