/// <reference types="react" />
interface HeartProp {
    isClick: boolean;
    styles?: any;
    onClick: () => void;
}
declare function Heart({ isClick, onClick, styles }: HeartProp): JSX.Element;

export { HeartProp, Heart as default };
