export declare function PrepareAuth(user: string, pwd: string): { Authorization: string; }; export declare function PostJson(url: any, rec: any, headers?: {}): Promise; export declare function PatchJson(url: any, rec: any, headers?: {}): Promise; export declare function GetJson(url: any, headers?: {}): Promise; export declare function UploadFile(url: any, filePath: any, inputName?: string): Promise; export declare function DownloadFile(url: any, filePath: any): Promise;