/** * Returns a document-unique id with the given prefix, e.g. `uniqueId('Checkbox')` * -> `"checkbox-1"`. */ declare function uniqueId(prefix: string): string; export { uniqueId };