import { SVATraits } from 'jade-garden';
/**
 * **Hover Card**
 * @description Allows sighted users to preview content available behind a link.
 * @see [source](https://kobalte.dev/docs/core/components/hover-card#anatomy)
 */
export declare const slots: readonly ["root", "arrow", "content", "trigger"];
/**
 * **Hover Card**
 * @description Allows sighted users to preview content available behind a link.
 * @see [source](https://kobalte.dev/docs/core/components/hover-card#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Hover Card**
 * @description Allows sighted users to preview content available behind a link.
 * @see [source](https://kobalte.dev/docs/core/components/hover-card#api-reference)
 */
export type Traits = SVATraits<Slots, {
    root: {};
    arrow: {};
    content: {};
    trigger: {};
}>;
