import { RefinementCtx } from 'zod' export type RefinementVoid = (input: In, ctx: RefinementCtx) => void export type RefinementTypeAssertion = (input: In, ctx: RefinementCtx) => input is Out