import { type SVGProps } from 'react'; type AnimatedChevronIconProps = Omit, 'children'> & { title?: string; open?: boolean; animated?: boolean; pathClassName?: string; }; declare const AnimatedChevronIcon: ({ className, pathClassName, title, open, animated, role, "aria-hidden": ariaHidden, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...props }: AnimatedChevronIconProps) => import("react/jsx-runtime").JSX.Element; export { AnimatedChevronIcon }; export type { AnimatedChevronIconProps };