/** * Enrich function is used with field data to generate an enrichment */ export declare type EnrichFn = (value: unknown | unknown[]) => unknown; /** * A single validation rule with the name of the rule and validation function */ export declare type EnrichValue = Record; /** * Custom validation rules for Formula */ export declare type EnrichFields = Record;