import React from "react";
interface TrashIconProps {
    color?: string;
    size?: number;
}
declare const TrashIcon: React.FC<TrashIconProps>;
export default TrashIcon;
