import React from 'react'; import { BsPrefixRefForwardingComponent, BsPrefixPropsWithChildren } from './helpers'; export interface AccordionBodyProps extends BsPrefixPropsWithChildren, React.HTMLAttributes { } declare type AccordionBody = BsPrefixRefForwardingComponent<'div', AccordionBodyProps>; declare const AccordionBody: AccordionBody; export default AccordionBody;