import 'cross-fetch/polyfill';
export declare const fetchFromAPI: (urlPath: string, URLInfo: {
    token: string;
    HTTPMethod?: string;
    params?: URLSearchParams;
}) => Promise<any>;
