/** * optimizely uuid generation * originally from https://github.com/optimizely/uuid/blob/master/index.js * copied here so we don't have to import another package */ declare const generate_uuid: (a?: string) => string; export { generate_uuid };