import PostRobot from "post-robot"; import { AxiosRequestConfig } from "axios"; /** * Dispatches a request using PostRobot. * @param postRobot - The PostRobot instance. * @returns A function that takes AxiosRequestConfig and returns a promise. */ export declare const dispatchAdapter: (postRobot: typeof PostRobot) => (config: AxiosRequestConfig) => Promise; /** * Dispatches an API request using axios and PostRobot. * @param url - The URL of the API endpoint. * @param options - Optional request options. * @returns A promise that resolves to a partial Response object. */ export declare const dispatchApiRequest: (url: string, options?: RequestInit) => Promise; //# sourceMappingURL=adapter.d.ts.map