import type { Option } from "../../../Option"; import type { Exit } from "../../Exit"; import * as C from "../../Exit/Cause"; import * as T from "../../Task"; import type { Pull } from "./Pull"; export declare type Take = Exit, ReadonlyArray>; export declare const chunk: (as: readonly A[]) => Exit, readonly A[]>; export declare const halt: (cause: C.Cause) => Exit, readonly never[]>; export declare const end: Take; export declare const done: (take: Exit, readonly A[]>) => T.Task, readonly A[]>; export declare const fromPull: (pull: Pull) => T.Task, readonly O[]>>; //# sourceMappingURL=Take.d.ts.map