export type ValidatorsConfig = Record>; /** * Parse the validators section from the simple YAML fields map. * * Fields arrive as flat "validators.max-file-size.max_bytes" = "500000" entries. * We reconstruct them into nested config: { "max-file-size": { max_bytes: 500000 } }. */ export declare function parseValidatorsConfig(fields: Record): ValidatorsConfig; //# sourceMappingURL=config.d.ts.map