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