/**
* Converts a string into an ID format by removing non-alphanumeric characters and converting the first letter to lowercase.
* @param {string} input - The inputstring to convert.
* @returns {string} The converted ID string.
*/
export declare functionmakeId(input: string): string;