import { IDataValidatorReturnType } from "../@types";
/**
 * To validate the request body's data is array and all the ids are unique
 * @param data The data array of the request body
 */
export declare function dataValidator(data: any): IDataValidatorReturnType;
