import * as React from 'react';
import '../ImgGen.css';
import { ImgGenClasses } from '../../utils/style-utils';
interface ImgGenPromptWaitingProps {
    /** Classname(s) to apply to the container */
    className?: string;
    /** Custom CSS classes for styling component parts */
    classes?: ImgGenClasses;
    /** Database name to use for storing images */
    database?: string;
    /** Enable debugging output */
    debug?: boolean;
    /** Callback when files are uploaded via drag-drop or file picker */
    onFilesUploaded?: (docId: string) => void;
}
export declare function ImgGenPromptWaiting({ className, classes, database, debug, onFilesUploaded, }: ImgGenPromptWaitingProps): React.JSX.Element;
export {};
