import type { ComponentPropsWithoutRef } from 'react'; type AccordionProps = ComponentPropsWithoutRef<'div'> & { collapsible?: boolean; onValueChange: (value: string | null) => void; value: string | null; }; declare function Accordion({ children, collapsible, onValueChange, value, ...props }: AccordionProps): import("react/jsx-runtime").JSX.Element; export default Accordion; export type { AccordionProps };