import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input value into a string. * * @example * ROW a=10 * | EVAL j = TO_STRING(a) * * @example * ROW a=[10, 9, 8] * | EVAL j = TO_STRING(a) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_string.d.ts.map