import type { ComponentPropsWithRef, ElementType } from 'react'; export type AccordionProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * 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: { ({ className, tag: Tag, ...remainingProps }: AccordionProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Accordion;