/** * Storage module stub * Simplified storage manager for mailer */ export interface IStorageOptions { dataDir?: string; } export class StorageManager { constructor(options?: IStorageOptions) { // Stub implementation } async get(key: string): Promise { return null; } async set(key: string, value: any): Promise { // Stub implementation } }