/**
 * @module Collection
 */
import { type IAsyncCollection } from "../../../../collection/contracts/_module.js";
/**
 * @internal
 */
export declare class AsyncSliceIterable<TInput> implements AsyncIterable<TInput> {
    private collection;
    private start;
    private end;
    constructor(collection: IAsyncCollection<TInput>, start: number | undefined, end: number | undefined);
    [Symbol.asyncIterator](): AsyncIterator<TInput>;
}
