/** * MailDev CLI Default Configuration * * Default values matching v2 behavior for backward compatibility */ import type { MailDevConfig } from './types.js'; /** * Default maximum accepted message size (50 MB). Bounds the work done parsing a * single message so a maliciously large multipart body can't tie up the server. */ export declare const DEFAULT_MAX_MESSAGE_SIZE: number; /** * Default configuration values * These match the v2 defaults exactly */ export declare const DEFAULT_CONFIG: MailDevConfig; /** * Get a copy of the default configuration */ export declare function getDefaultConfig(): MailDevConfig; //# sourceMappingURL=defaults.d.ts.map