export declare class Promize implements Promise { private _promise; res: (value: T | PromiseLike) => void; rej: (reason?: any) => void; /** * Immdiately resolves the promise with the given value if provided. */ constructor(resValue?: T); /** * Recreate the underlying promise * @param resValue If not undefined, resolves the internal promise with given value on creation. */ set(resValue?: T): void; /** * Recreate the underlying promise */ reset(): void; then: Promise["then"]; catch: Promise["catch"]; finally: Promise["finally"]; [Symbol.toStringTag]: string; } //# sourceMappingURL=Promize.d.ts.map