import type { CookedPipe } from "../types/generated/cooked-pipe"; /** * Creates a new "cooked" pipe using the provided value as the starting input. * @deprecated Use {@link from} with iterable helpers instead. * @example * using("Hello World!").pipe( * (str) => str.split(" ") * ); */ export declare const using: (value: T) => { pipe: CookedPipe; };