@llamaindex/ui
Version:
A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications
10 lines (7 loc) • 645 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
declare function HoverCard({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Root>): react_jsx_runtime.JSX.Element;
declare function HoverCardTrigger({ ...props }: React.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
declare function HoverCardContent({ className, align, sideOffset, ...props }: React.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
export { HoverCard, HoverCardContent, HoverCardTrigger };