export type MaybePromise<T> = T | Promise<T>;
/**
 * Type representing any iterable that can yield values
 */
export type AnyIterable<T> = AsyncGenerator<T> | AsyncIterable<T> | Iterable<T>;
export type * from './index';
//# sourceMappingURL=types.d.ts.map