import type { FunctionDefinition } from '../../definition_types'; /** * Returns the square root of a number. The input can be any numeric value, the return value is always a double. * Square roots of negative numbers and infinities are null. * * @example * ROW d = 100.0 * | EVAL s = SQRT(d) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=sqrt.d.ts.map