import React from 'react'; export interface StarCrossSVGProps { pathRef: React.Ref; 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; } /** * @component * A component that returns an SVG component that can be used with several of the components in this library. * It takes in a pathRef component which is used in the MagicalTextSparkleAnimator (for MagicalText). */ declare const StarCrossSVG: ({ pathRef, width, height, style, className, onClick, onMouseEnter, onMouseLeave, onFocus, onBlur, onKeyDown, ref, }: StarCrossSVGProps) => React.JSX.Element; export { StarCrossSVG };