import { type ComponentPropsWithRef, type ElementType, type ReactElement } from 'react'; export type AccordionToggleIconProperties = { /** manually assign the open state of the accordion */ accordionOpen?: boolean; /** The icon in closed state */ elementClosed?: ReactElement; /** The icon in the open state */ elementOpen?: ReactElement; } & ComponentPropsWithRef; /** * Component containing the icon and logic for the accordion toggle icon. * @docs {@link https://design.visa.com/components/accordion/?code_library=react | See Docs} */ declare const AccordionToggleIcon: { ({ accordionOpen, className, elementClosed, elementOpen, ...remainingProps }: AccordionToggleIconProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default AccordionToggleIcon;