export declare class Networking {
    baseUri: string;
    constructor(baseUri: string);
    throwOnError(res: any): any;
    get(path: string): Promise<any>;
    post(path: string, body?: any): Promise<any>;
}
