/// import { SvgIconProps } from '@mui/material/SvgIcon'; type Direction = 'up' | 'down' | 'left' | 'right'; export interface TrailingArrowIconProps extends SvgIconProps { direction?: Direction; size?: number | string; /** How direction changes are animated: cross-fade between rotated copies, smooth CSS rotation, or none */ transitionEffect?: 'fade' | 'rotation' | 'none'; /** Duration in ms for both fade and rotation transitions */ transitionDurationMs?: number; } declare function TrailingArrowIcon({ direction, size, transitionEffect, transitionDurationMs, sx, className, ...props }: TrailingArrowIconProps): import("react").JSX.Element; export default TrailingArrowIcon;