import { GotJSONOptions, GotPromise, GotUrl } from 'got'; declare type GotFunction = (url: GotUrl, options?: Partial) => GotPromise; export interface GotInstance { get: GotFunction; post: GotFunction; } export {};