import { ReactNode } from 'react'; declare type HoverCardProps = { children: ReactNode[]; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export declare function HoverCard({ children, side, align, }: HoverCardProps): JSX.Element; export {};