import { DataTypeValidators } from '../validators/validators'; /** * Changes the value type * @param {FieldDataTypes} dataType type for value conversion * @param {Any} value value to be converted */ declare const convertType: (dataType: DataTypeValidators, value?: any) => any; export default convertType;