import { TQueue } from "@effect/core/stm/TQueue/definition"; import { USTM } from "@effect/core/stm/STM/definition/base"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Takes a single element from the queue, returning `None` if the queue is * empty. * @tsplus getter effect/core/stm/TQueue poll * @tsplus location "@effect/core/stm/TQueue/operations/poll" */ export declare function poll(self: TQueue): USTM>; //# sourceMappingURL=poll.d.ts.map