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