import { Fields } from "../helpers/fieldsHelper"; type PostParams = Record; /** * Default helper that will contain all methods * that should help with processing request details and bind * * @type {*} */ export declare class RequestProcessor { /** * Will try to find all fields that should be used in model * * @param {Request} req * @param {Object} fields * @param {Function=} [cb] * @see ControllerHelper#getFields to know what data should be passed into fields * @returns {Object} List of processed values from request */ static processRequest(req: ReqType, fields: Fields): PostParams; } export {};