/**
 * @param values values to be returned by the async iterable
 */
export declare function of<T>(...values: T[]): AsyncGenerator<T, void, unknown>;
