import type { FunctionDefinition } from '../../definition_types'; /** * Returns the direction type (inbound, outbound, internal, external) given a source IP address, destination IP address, and a list of internal networks. * * @example * ROW ip0 = "127.0.0.1"::ip, ip1 = "5.6.7.8"::ip * | EVAL direction = NETWORK_DIRECTION(ip0, ip1, ["loopback", "private"]) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=network_direction.d.ts.map