import { Effect } from "@effect/core/io/Effect/definition"; import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Returns a successful effect with the head of the collection if the collection * is non-empty, or fails with the error `None` if the collection is empty. * @tsplus getter effect/core/io/Effect head * @tsplus location "@effect/core/io/Effect/operations/head" */ export declare function head(self: Effect>): Effect, A>; //# sourceMappingURL=head.d.ts.map