/** * Builds a safe attachment Content-Disposition value for res.download(). * * ASCII-safe filenames keep the historical header shape, while non-ASCII or * unsafe filenames get a sanitized fallback plus RFC 5987 filename* metadata. */ export declare function buildAttachmentContentDisposition(filename: string): string;