import { FC } from "react";
interface RedoIconProps {
    className?: string;
    width?: number;
    height?: number;
}
declare const RedoIcon: FC<RedoIconProps>;
export default RedoIcon;
