import { SVATraits } from 'jade-garden';
/**
 * **Accordion**
 * @description A vertically stacked set of interactive headings that each reveal an associated section of content.
 * @see [source](https://kobalte.dev/docs/core/components/accordion#anatomy)
 */
export declare const slots: readonly ["content", "header", "item", "trigger"];
/**
 * **Accordion**
 * @description A vertically stacked set of interactive headings that each reveal an associated section of content.
 * @see [source](https://kobalte.dev/docs/core/components/accordion#anatomy)
 */
export type Slots = (typeof slots)[number];
/**
 * **Accordion**
 * @description A vertically stacked set of interactive headings that each reveal an associated section of content.
 * @see [source](https://kobalte.dev/docs/core/components/accordion#api-reference)
 */
export type Traits = SVATraits<Slots, {
    content: {};
    header: {};
    item: {};
    trigger: {};
}>;
