import { type SVGProps } from 'react'; type NotAllowedIconAnimationTrigger = 'always' | 'hover'; type NotAllowedIconProps = Omit, 'children'> & { title?: string; animated?: boolean; animationTrigger?: NotAllowedIconAnimationTrigger; }; declare const NotAllowedIcon: ({ className, title, animated, animationTrigger, role, "aria-hidden": ariaHidden, "aria-labelledby": ariaLabelledBy, ...props }: NotAllowedIconProps) => import("react/jsx-runtime").JSX.Element; export { NotAllowedIcon }; export type { NotAllowedIconAnimationTrigger, NotAllowedIconProps };