/**
* Creates an ID name for each file that strips all invalid characters.
* @param {string} name - name of the file added to file input
* @returns {string} same characters as the name with invalid chars removed
*/exportdeclareconstmakeSafeForID: (name: string) =>string;