/** * Fast pathname extraction from URL string without full URL parsing. * This is significantly faster than `new URL(url).pathname` for simple cases. * * @param url - The full URL string (e.g., "http://localhost:3000/users?page=1") * @returns The pathname portion (e.g., "/users") */ export declare function getPathname(url: string): string; /** * Fast query string extraction from URL string. * Returns the query string without the leading "?", or empty string if none. * * @param url - The full URL string * @returns The query string without "?" (e.g., "page=1&limit=10") */ export declare function getQueryString(url: string): string; //# sourceMappingURL=url.d.ts.map