declare const getResultFromPromise: <T>(promise: Promise<T>) => Promise<T>;
declare const getValueFromPromise: <T>(promise: Promise<T>) => T;

export { getResultFromPromise, getValueFromPromise };
