declare function alphabeticalSort(arr: string[]): string[]; declare function clearListeners(old_element: HTMLElement): Node; declare function parseMISExcel(file: File): Promise<{ metadata: any[]; compliancesArr: any; }>; 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 callApiPresigned(url: string, data: string): Promise; declare const exportFunctions: { validateName: (name: string) => boolean; alphabeticalSort: typeof alphabeticalSort; clearListeners: typeof clearListeners; parseMISExcel: typeof parseMISExcel; readCookie: typeof readCookie; callApi: typeof callApi; callApiPresignedDelete: typeof callApiPresignedDelete; callApiPresignedGet: typeof callApiPresignedGet; callApiPresigned: typeof callApiPresigned; }; export default exportFunctions; //# sourceMappingURL=util.d.ts.map