import type { Cons, LazyList, Nil } from "./model"; export declare const isEmpty: (xs: LazyList) => xs is Nil; export declare const isNonEmpty: (xs: LazyList) => xs is Cons; //# sourceMappingURL=guards.d.ts.map