import { IFetchResponse } from "../../utils/fetch-response.interface"; export declare class PageRepository { private host; private protocol; private port; constructor(host: string, protocol: string, port?: string | null); get(path: string, headers: any): Promise; private getPortalUrl; private getHttpsAgent; private retrievePortalPage; private handlePortalPageRequestError; private parseIncomingHeaders; private parseHeaders; }