/** * @see https://github.com/GoogleChrome/web-vitals/blob/main/src/lib/generateUniqueID.ts */ export declare const generateUID: () => string; export declare const shuffle: (arr: T) => T; declare type AllowPromise = Promise | T; export declare function pipe(...fns: Array<(arg: T) => AllowPromise>): (arg: T) => Promise; export declare const ssrSafeWindow: Window | null; export {};