/**
 * Converts array to an async iterable
 */
export declare function from<T>(values: T[]): AsyncGenerator<T, void, unknown>;
