import * as fetch from 'node-fetch'; import { ObosSsoGetTokenService } from '../../../obos-sso/service/obos-sso-get-token.service'; import { FetchService } from '../../../unfold-utils/service/fetch.service'; interface StyrerommetApiRequestServiceOptionsInterface { readonly method: 'GET' | 'POST'; readonly endpoint: string; readonly data?: object | string; readonly expectedResponseStatus?: number; readonly requestId?: string; } export declare class StyrerommetApiRequest { private apiUrl; private obosAuthorize; private fetchService; constructor(apiUrl: string, obosAuthorize: ObosSsoGetTokenService, fetchService: FetchService); call(options: StyrerommetApiRequestServiceOptionsInterface): Promise; } export {};