import type { FunctionDefinition } from '../../definition_types'; /** * Returns the cube root of a number. The input can be any numeric value, the return value is always a double. * Cube roots of infinities are null. * * @example * ROW d = 1000.0 * | EVAL c = CBRT(d) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=cbrt.d.ts.map