declare function readCookie(key: string): string; declare function callApi(url: string, data: string, authorization: any): Promise; declare function escapeRegExp(string: string): string; declare const exportFunctions: { callApi: typeof callApi; validateName: (name: string) => boolean; readCookie: typeof readCookie; escapeRegExp: typeof escapeRegExp; }; export default exportFunctions; //# sourceMappingURL=util.d.ts.map