declare module '@devsnek/fuzzy' { interface Options { maxSteps?: number; values?: any[]; exclude?: Function[]; included?: Function[]; } type Random = (options?: Options) => T; const fuzzy: { undefined: Random, null: Random, boolean: Random; symbol: Random; error: Random; number: Random; date: Random; string: Random; regexp: Random; array: Random; typedArray: Random; map: Random>; weakMap: Random>; set: Random>; weakSet: Random>; bigint: Random; object: Random; arrayBuffer: Random; json: Random; promise: Random>; proxy: Random; } export = fuzzy; }