/** * Creates a new promise and exposes its resolver function. * Use with care! */ export declare function createPromiseWithResolver(): [Promise, (result: T) => void];