export declare function makeid(length: any): string; export declare const MAX_RADIUS_ATTRIBUTE_SIZE = 253; export interface IDeferredPromise { promise: Promise; resolve: (value?: unknown) => Promise; reject: (reason?: any) => Promise; } export declare const newDeferredPromise: () => IDeferredPromise; export declare const delay: (timeout: number) => Promise;