import type { ComponentPropsWithRef, ElementType } from 'react';
export type AccordionProperties<ET extends ElementType = 'details'> = {
    /** Tag of Component */
    tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
 * Sets of vertical headers that reveal or hide the accordion panel.
 * @docs {@link https://design.visa.com/components/accordion/?code_library=react | See Docs}
 * @related accordion-heading, accordion-panel, accordion-toggle-icon, use-accordion
 * @vgar TODO
 * @wcag TODO
 */
declare const Accordion: {
    <ET extends ElementType = "details">({ className, tag: Tag, ...remainingProps }: AccordionProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default Accordion;
