import { default as fetchJsonp } from 'fetch-jsonp';
export interface FetchJsonpOptions extends fetchJsonp.Options {
    query?: Record<string, any>;
}
export declare function jsonp<T = any>(url: string, options?: FetchJsonpOptions): Promise<T>;
export type Jsonp = typeof jsonp;
