import { MailAdapter } from "./index.js";
import { CapturedMail } from "./capture.js";
import { RecordStore } from "@platform-modules/record-store";
//#region src/testing.d.ts
declare function makeFakeMailAdapter(opts?: {
  now?: () => string;
}): MailAdapter & {
  store: RecordStore<CapturedMail>;
};
//#endregion
export { makeFakeMailAdapter };