import { Facet } from '../types'; /** * Takes a Facet and returns a Promise that will resolve with its first value * * @param facet * @returns Promise */ export declare const asPromise: (facet: Facet) => { promise: Promise; cancel: () => void; };