/** * Fetch Wrapper to handle POST requests * * @param url The URL where to make the request to * @param args The arguments * * @category Data Fetching * * @returns {object} */ export declare const apiPost: (url: string, args?: { [index: string]: any; }) => Promise; /** * Fetch Wrapper to handle GET requests. * * @param url The URL where to make the request to * @param args The arguments * @param burstCache Whether it should burst cache * * @category Data Fetching * * @returns {object} */ export declare const apiGet: (url: string, args?: { [index: string]: any; }, burstCache?: boolean) => Promise<{ headers: { [index: string]: any; }; json: any; }>;