import { RequestService } from "../services/request.service"; import { APIResponse } from "./MailerSend.module"; import { BlockListRecipients, RecipientsQueryParams } from "../models"; export declare class RecipientModule extends RequestService { constructor(apiKey: string, baseUrl: string); list(queryParams?: RecipientsQueryParams): Promise; single(recipientId: string): Promise; delete(recipientId: string): Promise; blockList(queryParams?: RecipientsQueryParams): Promise; blockRecipients(blockRecipients: BlockListRecipients): Promise; delBlockListRecipients(ids: string[]): Promise; delAllBlockListRecipients(): Promise; hardBounceList(queryParams?: RecipientsQueryParams): Promise; spamComplaintsList(queryParams?: RecipientsQueryParams): Promise; unsubscribesList(queryParams?: RecipientsQueryParams): Promise; }