import { FieldParserProcedureOptions } from "./field-parser-procedure-options"; export interface FieldParserFn { (constraintFnParams: { args: Args; fieldValue: any; fieldName: string; path: string; context: any; options: FieldParserProcedureOptions; }): Ret; }