export declare class JsonService { private _contentTypes; private _jwtHandler; constructor(additionalContentTypes?: string[] | null, jwtHandler?: any); getJson(url: string, token?: string): Promise; postForm(url: string, payload: any, basicAuth?: string): Promise; }