export declare const UTCDateTimeExample = "2025-12-31T23:59:59.999Z"; export declare const UTCDateTimePattern = "^[1-2]\\d{3}-[0-1]\\d-[0-3]\\dT\\d{2}:\\d{2}:\\d{2}.\\d{3}Z$"; /** * Parse entering query/body to match with the validation schemas * @param query The query object or body of the request * @param rules An object whose keys are the data types to match, and the values the props that should be parsed (nested props must use dot syntax) */ export declare const parseNestPayload: (payload: any, rules: Partial>) => any;