UNPKG

@llamaindex/ui

Version:

A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications

14 lines (11 loc) 515 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { SearchAgentDataOptions, AgentClient } from 'llama-cloud-services/beta/agent'; interface ItemCountProps { title: string; filter?: SearchAgentDataOptions["filter"]; variant?: "total" | "awaiting" | "approved" | "rejected"; subtitle?: string; client: AgentClient; } declare function ItemCount({ title, filter, variant, subtitle, client, }: ItemCountProps): react_jsx_runtime.JSX.Element; export { ItemCount, type ItemCountProps };