import React, { type CSSProperties } from 'react'; export interface HauntedProps { glowOptions?: { animationTime?: number; boxShadowOff?: string; boxShadowOn?: string; }; creatureOptions?: { distance?: number; numberOf?: number; animationTime?: number; repeat?: boolean; dimensions?: { width: number; height: number; }; }; disableFun?: boolean; Creature?: React.ElementType | null; style?: CSSProperties; children?: React.ReactNode; } /** * @component */ declare function Haunted({ glowOptions, creatureOptions, disableFun, Creature, style, children, }: HauntedProps): React.JSX.Element; export { Haunted };