import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface AccordionContentProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** * If true, expands the content, otherwise collapse it. */ expanded?: boolean; } declare const AccordionContent: import("react").ForwardRefExoticComponent>; export default AccordionContent;