/** * We can't use {@link import('preact/hooks').useId} because it doesn't guarantee uniqueness across * different render trees. So multiple components mounted on the same page could have collisions. * * Therefore, we instead calculate a uuid and prepend a prefix. * * @param prefix a prefix to identify this usage */ export declare const useId: (prefix: string) => string;