/**
* Generates a unique identifier string with a 'cdr-id-' prefix.
*
* Creates a random hexadecimal ID that can be used for component instance
* identification, ARIA attributes, or any scenario requiring unique IDs.
*
* Note: This uses Math.random() and is suitable for client-side uniqueness
* but should not be used for cryptographic purposes or guaranteed global uniqueness.
*
* @returns A unique ID string in the format 'cdr-id-{hex}'
*
* @example
* generateUid() // => 'cdr-id-a3f2b9'
* generateUid() // => 'cdr-id-7d4c1e'
*
* @example
* // Using in a component for accessibility
* const inputId = generateUid();
* //
* //
*/
export default function generateUid(): string;