export declare type FetchJson<T = any> = (url: string) => Promise<T>;
export declare const fetchJson: FetchJson;
