import { Sender } from "./Sender"; import { Pagination } from "./Pagination"; export declare class Recipient extends Sender { constructor(email: string, name?: string); } export interface RecipientsQueryParams extends Pagination { domain_id?: string; } export interface BlockListRecipients { domain_id?: string; recipients?: string[]; patterns?: string[]; }