import React from "react"; import { Board } from "microboard-temp"; export type ChartType = "Flow chart" | "Cloud architecture" | "Database"; interface Props { board: Board; onClose: () => void; initialPrompt?: string; initialChartType?: ChartType; onSavePrompt: (prompt: string, chartType: ChartType) => void; } export declare const AIChat: React.FC; export {};