/**
 * useComponentId is a hook for getting a component id.
 *
 * It'll use the user provided id if it exists, otherwise it'll generate a unique id.
 */
export declare const useComponentId: (id?: string | undefined) => string;
