import http from "http";
import FormData from "form-data";
import { GotenbergClientFunction } from "../_types";
declare export function post(
  url: string,
  data: FormData,
  headers?: http.OutgoingHttpHeaders
): Promise<NodeJS$ReadableStream>;
declare export function get(url: string): Promise<NodeJS$ReadableStream>;
declare export var client: GotenbergClientFunction;
