import { SmrtCollection } from '@happyvertical/smrt-core'; import { Whitelist } from '../models/Whitelist.js'; export declare class WhitelistCollection extends SmrtCollection { static readonly _itemClass: typeof Whitelist; /** * Check if an email is whitelisted for a specific category */ isWhitelisted(email: string, category?: string): Promise; /** * Get the matching whitelist entry for an email */ getMatchingEntry(email: string): Promise; /** * Get whitelist entries by category */ getByCategory(category: string): Promise; } //# sourceMappingURL=WhitelistCollection.d.ts.map