//#region src/hooks/useId.d.ts
/**
 * Generate a unique id to be used in a component. If an `id` is provided, it
 * will be used instead.
 *
 * @param id - An optional value to be used instead of generating a unique id.
 * Useful when accepting an optional `id` as a prop in a component.
 */
declare function useId(id?: string): string;
//#endregion
export { useId };