import React from 'react'; export interface HeartSVGProps { width: number; height: number; style?: React.CSSProperties; className?: string; onClick?: () => void; onMouseEnter?: () => void; onMouseLeave?: () => void; onFocus?: () => void; onBlur?: () => void; onKeyDown?: (event: React.KeyboardEvent) => void; ref: React.RefObject | null; } /** * A component that returns an SVG component that can be used with several of the components in this library. * Original SVG was CC0 (source: https://www.svgrepo.com/svg/165566/heart) */ declare const HeartSVG: ({ width, height, style, className, onClick, onMouseEnter, onMouseLeave, onFocus, onBlur, onKeyDown, ref, }: HeartSVGProps) => React.JSX.Element; export { HeartSVG };