import type { Action } from 'svelte/action';
import type { HtmlIngredientProps } from '../types.js';
export interface HoverCardContentProps extends HtmlIngredientProps<'div', HTMLDivElement, never, Action> {
}
declare const HoverCardContent: import("svelte").Component<HoverCardContentProps, {}, "ref">;
type HoverCardContent = ReturnType<typeof HoverCardContent>;
export default HoverCardContent;
