/**
 * URL conversion utilities for Apple Developer Documentation
 */
/**
 * Convert a web URL to a JSON API URL
 * @param webUrl The web URL to convert
 * @returns The corresponding JSON API URL
 */
export declare function convertToJsonApiUrl(webUrl: string): string | null;
/**
 * Validate if URL is from Apple Developer domain
 * @param url The URL to validate
 * @returns True if valid Apple Developer URL
 */
export declare function isValidAppleDeveloperUrl(url: string): boolean;
/**
 * Extract API name from URL
 * @param url The URL to extract name from
 * @returns The API name
 */
export declare function extractApiNameFromUrl(url: string): string;
//# sourceMappingURL=url-converter.d.ts.map