import type { NetworkConnector } from "../index";
export declare class RestFetcher {
    private hmsys;
    http: boolean;
    constructor(hmsys: () => NetworkConnector, http: boolean);
    get(id: string, path: string): Promise<Response>;
}
