declare function readCookie(key: string): string; declare function callApi(url: string, data: string, authorization: any): Promise; declare function callApiPresignedDelete(url: string): Promise; declare function callApiPresignedGet(url: string): Promise; declare function isInteger(value: string): boolean; declare function isPlainObject(value: any): boolean; declare const exportFunctions: { callApi: typeof callApi; callApiPresignedDelete: typeof callApiPresignedDelete; callApiPresignedGet: typeof callApiPresignedGet; validateName: (name: string) => boolean; readCookie: typeof readCookie; delay: (delayInms: number) => Promise; timeSince: (date: number) => string; isInteger: typeof isInteger; isPlainObject: typeof isPlainObject; }; export default exportFunctions; //# sourceMappingURL=util.d.ts.map