/**
 * HIG Discovery Service
 *
 * Comprehensive discovery service that identifies all Apple HIG sections
 * across all platforms using known URL patterns and structures.
 */
import type { HIGSection, ApplePlatform } from '../../types.js';
export declare class ContentHIGDiscoveryService {
    private readonly baseUrl;
    /**
     * Discover all HIG sections using comprehensive known structure
     */
    discoverSections(): Promise<HIGSection[]>;
    private getUniversalSections;
    private getPlatformSpecificSections;
    private addSections;
    private slugToTitle;
    /**
     * Get platform-specific content directory path
     */
    getPlatformDirectory(platform: ApplePlatform): string;
    /**
     * Generate filename for a section
     */
    generateFilename(section: HIGSection): string;
}
//# sourceMappingURL=hig-discovery.service.d.ts.map