///
import { SxProps, Theme } from '@mui/material';
import { SvgIconProps } from '@mui/material/SvgIcon';
import { Direction, DirectionRotate } from './ArrowDownIcon';
interface ArrowDownIconProps {
className?: string;
fontSize?: SvgIconProps['fontSize'];
direction?: Direction;
sx?: SxProps;
}
export declare const directionRotate: DirectionRotate;
export default function ArrowDownIcon({ className, fontSize, direction, sx, }: ArrowDownIconProps): JSX.Element;
export {};