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