import type { ComponentPropsWithRef, ElementType } from 'react'; export type AccordionPanelProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Component containing the content of the accordion. * @docs {@link https://design.visa.com/components/accordion/?code_library=react | See Docs} */ declare const AccordionPanel: { ({ className, tag: Tag, ...remainingProps }: AccordionPanelProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default AccordionPanel;