interface ProfileImageGeneratorProps { prompt: string; onPromptChange: (prompt: string) => void; onGenerate: () => void; isGenerating: boolean; imageUrl: string | null; hasGenerated: boolean; } export declare function ProfileImageGenerator({ prompt, onPromptChange, onGenerate, isGenerating, imageUrl, hasGenerated, }: ProfileImageGeneratorProps): import("react").JSX.Element; export {}; //# sourceMappingURL=ProfileImageGenerator.d.ts.map