import { AxiosResponse } from 'axios'; interface SendResponseConfig { maxRetry?: number; maxRedirects?: number; validateStatus?: (status: number) => boolean; } export declare const sendResponse: (destinationUrl: string, data: unknown, config?: SendResponseConfig | undefined, retryCallBack?: ((retryMessage: string) => void) | undefined) => Promise>; export {};