import Promise from './Promise';
export default class PromiseHandler<T> {
    onFulfilled: Function | null;
    onRejected: Function | null;
    promise: Promise<T>;
    constructor(onFulfilled: Function, onRejected: Function, promise: Promise<T>);
}
