import { ChatProjectConfigSchema } from '../chat-config/index.js';
export type ChatProjectType = {
    id: string;
    subdomain: string;
    orgId: string;
    createdAt: string;
    updatedAt: string;
    deploymentId: string;
    config: ChatProjectConfigSchema;
};
