import type { Lazy } from "../Function"; import type { LazyList } from "./model"; export declare const nil: LazyList; export declare const cons_: (head: Lazy, tail: Lazy>) => LazyList; export declare const cons: (head: Lazy) => (tail: Lazy>) => LazyList; export declare const list: (...xs: readonly A[]) => LazyList; export declare const fromArray: (xs: readonly A[]) => LazyList; //# sourceMappingURL=constructors.d.ts.map