type Later = { promise: Promise; resolve: (result: T) => void; reject: (reason: Error) => void; }; declare const later: () => Later; export type { Later }; export { later }; //# sourceMappingURL=later.d.ts.map