fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
23 lines (22 loc) • 594 B
TypeScript
import { Accordion as Accordion$1, AccordionItem } from "./ui/accordion.js";
import { ComponentProps, ReactNode } from "react";
//#region src/components/accordion.d.ts
declare function Accordions({
type,
ref,
className,
defaultValue,
...props
}: ComponentProps<typeof Accordion$1>): import("react").JSX.Element;
declare function Accordion({
title,
id,
value,
children,
...props
}: Omit<ComponentProps<typeof AccordionItem>, 'value' | 'title'> & {
title: string | ReactNode;
value?: string;
}): import("react").JSX.Element;
//#endregion
export { Accordion, Accordions };