import React from 'react'; export interface GhostAltSVGProps { width: number; height: number; style?: React.CSSProperties; className?: string; onClick?: () => void; onMouseEnter?: () => void; onMouseLeave?: () => void; onFocus?: () => void; onBlur?: () => void; onKeyDown?: (event: React.KeyboardEvent) => void; } /** * @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 function GhostAltSVG({ width, height, style, className, onClick, onMouseEnter, onMouseLeave, onFocus, onBlur, onKeyDown, }: GhostAltSVGProps): React.JSX.Element; export { GhostAltSVG };