import { MatchCase } from "typematcher"; import { IO } from "funfix-effect"; /** * Match value against all given matchers, return IO on match or failure */ export declare function match(val: I, cases: MatchCase): IO;