import { ChatflowType, IChatFlow } from '../../Interface'; export declare class ChatFlow implements IChatFlow { id: string; name: string; flowData: string; deployed?: boolean; isPublic?: boolean; apikeyid?: string; chatbotConfig?: string; apiConfig?: string; analytic?: string; speechToText?: string; followUpPrompts?: string; category?: string; type?: ChatflowType; createdDate: Date; updatedDate: Date; workspaceId?: string; }