import type { FunctionDefinition } from '../../definition_types'; /** * Truncates an IP to a given prefix length. * * @example * ROW ip4 = to_ip("1.2.3.4"), ip6 = TO_IP("fe80::cae2:65ff:fece:feb9") * | EVAL ip4_prefix = IP_PREFIX(ip4, 24, 0), ip6_prefix = IP_PREFIX(ip6, 0, 112); */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=ip_prefix.d.ts.map