/** * Get Scheduled Email Bulks via Infobip Service * Retrieves information about scheduled email bulks * * @see https://www.infobip.com/docs/api/channels/email/email-message-scheduling */ import type { ServiceOptions } from '@plyaz/types/api'; import type { EndpointsList } from '@/api/endpoints'; import type { FetchResponse } from 'fetchff'; import type { InfobipGetScheduledEmailsParams } from '@plyaz/types/api'; /** * Get scheduled email bulks from Infobip * Uses endpoint: GET /email/1/bulks * * @param params - Query parameters (bulkId required) * @param options - Optional service options * @returns Promise with InfobipGetScheduledEmailsResponse * * @example * ```typescript * const bulkInfo = await fetchInfobipScheduledEmails({ * bulkId: 'bulk-123' * }); * ``` */ export declare function fetchInfobipScheduledEmails(params: InfobipGetScheduledEmailsParams, options?: ServiceOptions): Promise; //# sourceMappingURL=fetchScheduledEmails.d.ts.map