export type AsyncFunction<T> = () => Promise<T>;
export declare const BASE_URL: string;
export declare function makeRequest(input: RequestInfo | URL, init?: RequestInit): Promise<any>;
export declare function constructUrl(projectNumber: string, endpoint: string): string;
