import { FluentAsyncIterable } from '.'; /** * Generates a FluentIterable that yields a for-like increment * @param start The starting number * @param condition The keep going condition * @param increment The increment. Default 1 */ export declare function fluentForAsync(start: T | Promise, condition: (value: T) => boolean | Promise, increment?: (value: T) => T | Promise): FluentAsyncIterable;