export declare function getAllComponents(args: {
    includeProOnly?: boolean;
}): Promise<{
    total: number;
    components: {
        name: string;
        description: string;
        category: string;
        installCommand: string;
        isPro: boolean;
    }[];
    formattedList: string;
}>;
//# sourceMappingURL=get-all-components.d.ts.map