import { AgentInfo } from "../transport";
/**
 * Formats an agent tag based on the agent information
 * @param agent Agent information
 * @param options Configuration options
 * @returns Formatted agent tag string
 */
export declare function getAgentTag(agent: AgentInfo, options?: {
    terse?: boolean;
}): string;
