import { SafeParseReturnType } from 'zod/lib/types' import { Mapper, MapperP, MapperTwoSym } from './Mapper' import { Result } from './Result' export type Parser = Mapper> export type ParserP = MapperP> export type ParserTwoSym = MapperTwoSym> export type ZodParser = Mapper>