export declare const stringifyKey: (key: any) => string; interface PromiseWithResolvers { promise: Promise; resolve: (value?: (PromiseLike | void)) => void; reject: (reason?: any) => void; } export declare const promiseWithResolvers: () => PromiseWithResolvers; export {};