import { BinaryLike } from 'node:crypto'; export declare const createProviders: () => { uuid: () => string; now: () => Date; bcrypt: (value: string) => Promise; bcryptCompare: (data: any, hash: string) => Promise; randomBytes: (bytes: number) => Promise; hash: (value: BinaryLike, algo: string) => Buffer; }; export type Providers = ReturnType; //# sourceMappingURL=providers.d.ts.map