/** * Sets the function to use for performing HTTP requests. Must be compatible with `got`. * @param fn The new request function. * @category Unit testing */ export declare function setRequestFn(fn: any): void; /** * Gets the `got`-compatible function for performing HTTP requests. * @returns The request function. * @category Unit testing */ export declare function getRequestFn(): import("got/dist/source").Got;