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