import { NOTHING } from "../constants"; import type { Nothing } from "../types"; import type { Predicate } from "../types"; export declare const fork: (value: T, [leftPredicate, rightPredicate]: [Predicate, Predicate], [left, right]: [(value: T) => U, (value: T) => V]) => U | V | typeof NOTHING;