import { Refinement } from "@tsplus/stdlib/data/Function"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Predicate } from "@tsplus/stdlib/data/Predicate"; /** * @tsplus static Maybe.Aspects partition * @tsplus pipeable Maybe partition * @tsplus location "@tsplus/stdlib/data/Maybe/partition" */ export declare function partition(f: Refinement): (self: Maybe) => readonly [Maybe, Maybe]; export declare function partition(f: Predicate): (self: Maybe) => readonly [Maybe, Maybe]; //# sourceMappingURL=partition.d.ts.map