import { Context } from "../../agent/Context"; import { Source } from "../../agent/Source"; type HostnameLocation = { source: Source; pathsToPayload: string[]; payload: string; port: number | undefined; hostname: string; }; export declare function findHostnameInContext(hostname: string, context: Context, port: number | undefined): HostnameLocation | undefined; export {};