import type { ComponentPropsWithoutRef } from 'react'; type AccordionItemProps = ComponentPropsWithoutRef<'div'> & { value: string; }; declare function AccordionItem({ children, value, ...props }: AccordionItemProps): import("react/jsx-runtime").JSX.Element; export default AccordionItem; export type { AccordionItemProps };