export interface ListComponentsArgs {
    category?: 'charts' | 'shapes' | 'layouts' | 'interactions' | 'frameworks';
    scope?: 'hatch' | 'community' | 'all';
    search?: string;
    author?: string;
}
export declare function listComponents(args?: ListComponentsArgs): Promise<{
    content: {
        type: string;
        text: string;
    }[];
}>;
