import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; export interface AccordionComponentTheme { base: string; } export interface AccordionContentProps extends ComponentProps<"div"> { theme?: DeepPartial; hasMotion?: boolean; } /** * @name AccordionContent * @description AccordionContent is the content of the accordion panel that is shown when the panel is open. * @param {AccordionContentProps} props * @returns {React.ReactNode} * @example * *

Content

*
* * @example * *

Content

*
*/ export declare const AccordionContent: FC; //# sourceMappingURL=AccordionContent.d.ts.map