@llamaindex/ui
Version:
A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications
13 lines (10 loc) • 469 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { SearchAgentDataOptions } from 'llama-cloud-services/beta/agent';
interface ItemCountProps {
title: string;
filter?: SearchAgentDataOptions["filter"];
variant?: "total" | "awaiting" | "approved" | "rejected";
subtitle?: string;
}
declare function ItemCount({ title, filter, variant, subtitle, }: ItemCountProps): react_jsx_runtime.JSX.Element;
export { ItemCount, type ItemCountProps };