import type { RequestInit } from 'node-fetch'; import type { Body, Response } from './types'; /** * Sends a post request to Paccurate API. * * @param url - API endpoint. * @param body - Packing configuration. * @param options - Request options. * @returns - Pack response. */ export declare function post(url: string, body: Body, options?: RequestInit): Promise; //# sourceMappingURL=request.d.ts.map