/**
 * Type definitions for marketplace functionality
 */
export interface MarketplacePersona {
    name: string;
    path: string;
    sha: string;
    size: number;
    download_url: string;
    html_url: string;
}
export interface MarketplaceSearchResult {
    path: string;
    html_url: string;
    repository: {
        full_name: string;
    };
    text_matches?: Array<{
        fragment: string;
        property: string;
    }>;
}
//# sourceMappingURL=marketplace.d.ts.map