export declare class StatePromise { private _resolved; private _resolve; private _reject; private _promise; private _callbacks; constructor(); get resolved(): boolean; get resolve(): (value: T | PromiseLike) => void; get reject(): (value: T | PromiseLike) => void; then(callback: () => void): Promise; reset(): void; } //# sourceMappingURL=StatePromise.d.ts.map