import type { Maybe } from "../index.ts"; import type { ListCapableStep, Step } from "../step.ts"; import type { ConnectionHandlingStep, ConnectionOptimizedStep, ItemsStep, StepRepresentingList } from "./connection.ts"; import { __ListTransformStep } from "./listTransform.ts"; /** * Transforms a list by wrapping each element in the list with the given mapper. */ export declare function each & Partial | ConnectionHandlingStep>, TResultItemStep extends Step>(listStep: TListStep, mapper: (itemPlan: ItemsStep extends ListCapableStep ? ReturnType["listItem"]> : Step>> ? U : any>) => TResultItemStep): __ListTransformStep; export declare function isSkippableEach($step: Step): $step is __ListTransformStep; //# sourceMappingURL=each.d.ts.map