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