import { AssertionPromise } from "./assertion/assertion-promise"; import { iAssertionIs } from "./interfaces/iassertion-is"; import { iAssertion } from "./interfaces/iassertion"; import { iValue } from "./interfaces/ivalue"; export declare class ValuePromise extends Promise implements PromiseLike { static execute>(callback: () => Promise): ValuePromise; static wrap>(value: T | Promise): ValuePromise; private constructor(); get is(): Promise; get not(): Promise; equals(value: any): AssertionPromise; exactly(value: any): AssertionPromise; like(value: any): AssertionPromise; contains(value: any): AssertionPromise; greaterThan(value: any): AssertionPromise; lessThan(value: any): AssertionPromise; greaterThanOrEquals(value: any): AssertionPromise; lessThanOrEquals(value: any): AssertionPromise; between(min: any, max: any): AssertionPromise; matches(value: any): AssertionPromise; startsWith(value: any): AssertionPromise; endsWith(value: any): AssertionPromise; includes(value: any): AssertionPromise; rename: (newName: string) => ValuePromise>; clear: () => ValuePromise>; clearThenType: (text: string, opts?: any) => ValuePromise>; type: (text: string, opts?: any) => ValuePromise>; assert: (message: string) => AssertionPromise; exists: () => Promise>; private _promisifyAssertMethod; private _promisifyAssertProperty; private _promisifyMethod; private _promisifyProperty; private toValuePromise; }