import { IBridge } from "./IBridge.js"; import { IRequestParams } from "./request/IRequestParams.js"; import { PathObject } from "./services/config/pathObject.js"; export declare class Bridge implements IBridge { constructor(); encodeUriComponent(s: string): string; parsePath(path: string): PathObject; private configureHttp; testRegEx(str: string, regExp: string): boolean; isInteger(value: number): boolean; substring(str: string, start: number, end?: number): string; getObjectKeys(obj: T): string[]; jsonStringify(value: T): string; jsonParse(json: string): T; getEnv(name: string): string; log(data: any): void; runBackgroundTask(task: any): void; createReadStream(path: string): any; private constructFormData; request(params: IRequestParams): Promise; requestWithoutResponse(params: IRequestParams): Promise; uuid(): string; isoDate(): string; toISOString(seconds: number): string; jwtSign(payload: any, privateKey: string, alg: string, options?: any): string; jwtVerify(token: string, privateKey: string, algorithm: string): any; jwtDecode(token: string): any; /** * * @returns amount of seconds since 1970-01-01T00:00:00Z */ getSystemTime(): number; } //# sourceMappingURL=bridge.d.ts.map