import type { HTMLAttributes, ReactNode } from 'react'; export interface ImageGeneratingProps extends HTMLAttributes { width?: string; height?: string; speed?: number; caption?: string; captionClassName?: string; showOverlay?: boolean; overlayText?: string; sparklingIcon?: ReactNode; } export declare function ImageGenerating({ width, height, speed, caption, captionClassName, className, style: styleProp, showOverlay, overlayText, sparklingIcon, ...props }: ImageGeneratingProps): import("react/jsx-runtime").JSX.Element; export declare namespace ImageGenerating { var displayName: string; } export declare const ImageGenerationPlaceholder: typeof ImageGenerating; export type ImageGenerationPlaceholderProps = ImageGeneratingProps;