import { SmrtCollection } from '@happyvertical/smrt-core'; import { Blacklist } from '../models/Blacklist.js'; export declare class BlacklistCollection extends SmrtCollection { static readonly _itemClass: typeof Blacklist; /** * Check if an email is blacklisted */ isBlacklisted(email: string): Promise; /** * Get the matching blacklist entry for an email */ getMatchingEntry(email: string): Promise; } //# sourceMappingURL=BlacklistCollection.d.ts.map