/**
 * Browse marketplace personas from GitHub
 */
import { GitHubClient } from './GitHubClient.js';
export declare class MarketplaceBrowser {
    private githubClient;
    private baseUrl;
    constructor(githubClient: GitHubClient);
    /**
     * Browse marketplace personas by category
     */
    browseMarketplace(category?: string): Promise<{
        items: any[];
        categories: any[];
    }>;
    /**
     * Format marketplace browse results
     */
    formatBrowseResults(items: any[], categories: any[], category?: string, personaIndicator?: string): string;
}
//# sourceMappingURL=MarketplaceBrowser.d.ts.map