/** * Pure URL parsing functions - no class instances * These functions are used by static methods for optimal performance */ import { AnalyzedInspectURL, CS2InspectConfig } from '../types'; export declare const INSPECT_BASE = "steam://rungame/730/76561202255233023/+csgo_econ_action_preview%20"; /** * Pure function to parse an inspect URL - no instance creation * This is the core parsing logic extracted from UrlAnalyzer */ export declare function parseInspectUrl(url: string, config: Required): AnalyzedInspectURL; /** * Pure function to format an analyzed URL back to string format - no instance creation * This is the core formatting logic extracted from UrlAnalyzer */ export declare function formatInspectUrl(urlInfo: AnalyzedInspectURL, options?: { quote?: boolean; includeSteamPrefix?: boolean; }): string; //# sourceMappingURL=url-parser.d.ts.map