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