/// import { SxProps, Theme } from '@mui/material'; import { SvgIconProps } from '@mui/material/SvgIcon'; export declare type Direction = 'next' | 'prev' | 'down' | 'up' | 'downLeft' | 'upRight'; interface ArrowDownIconProps { color: string; className?: string; fontSize?: SvgIconProps['fontSize']; direction?: Direction; sx?: SxProps; } export interface StyleProps { rotate: string; } export interface DirectionRotate { up: string; down: string; prev: string; next: string; downLeft: string; upRight: string; } export declare const directionRotate: DirectionRotate; export default function ArrowDownIcon({ color, className, fontSize, direction, sx, }: ArrowDownIconProps): JSX.Element; export {};