import type { FunctionDefinition } from '../../definition_types'; /** * Converts an input string to an IP value. * * @example * ROW str1 = "1.1.1.1", str2 = "foo" * | EVAL ip1 = TO_IP(str1), ip2 = TO_IP(str2) * | WHERE CIDR_MATCH(ip1, "1.0.0.0/8") * * @example * ROW s = "1.1.010.1" | EVAL ip = TO_IP(s, {"leading_zeros":"octal"}) * * @example * ROW s = "1.1.010.1" | EVAL ip = TO_IP(s, {"leading_zeros":"decimal"}) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=to_ip.d.ts.map