import React from 'react'; export interface GhostSVGProps { 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. * Original SVG was CC0 (source: https://www.svgrepo.com/svg/400277/ghost) */ declare const GhostSVG: ({ width, height, style, className, onClick, onMouseEnter, onMouseLeave, onFocus, onBlur, onKeyDown, ref, }: GhostSVGProps) => React.JSX.Element; export { GhostSVG };