import type { EmailAddress } from "../type"; /** * Filter out addresses from recipients, the remaining are the bcc. */ export declare function calculateBcc(recipients: EmailAddress[], to: EmailAddress[], cc: EmailAddress[]): EmailAddress[];