import type { OperatorDefinition } from '../../definition_types'; /** * Divide one value by another. For numeric operands, if either field is multivalued * then the result is `null`. * * Note: Division of two integer types will yield an integer result, rounding towards 0. " * If you need floating point division, `Cast (::)` one of the arguments to a `DOUBLE`. * For dense_vector operations, both arguments should be dense_vectors. Inequal vector dimensions generate null result. * */ declare const definition: OperatorDefinition; export default definition; //# sourceMappingURL=div.d.ts.map