import { vi } from 'vitest'; /** * Build a no-op Redis-like client stub (connection tests without IORedis). * * @returns Minimal async map with `get` / `set` / `quit` spies. */ export declare function createRedisMock(): { get: ReturnType; set: ReturnType; del: ReturnType; quit: ReturnType; }; /** * Minimal SMTP transport stub for mail integration tests. * * @returns Object with `sendMail` spy. */ export declare function createSmtpMock(): { sendMail: ReturnType; }; //# sourceMappingURL=mock.d.ts.map