export declare function add(id: string, resolve: Function, reject: Function): void; export declare function resolve(id: string, args?: any): boolean; export declare function reject(id: string, args?: any): boolean; declare function promised(id: string): boolean; declare const _default: { add: typeof add; resolve: typeof resolve; reject: typeof reject; promised: typeof promised; }; export default _default;