import { GroupInfo } from "./Groups/Group"; interface IEnding { id?: string | null; spaceId?: string | null; name?: string | null; description?: string | null; useWithAI: boolean; groups: GroupInfo[]; createdAt?: string | null; updatedAt?: string | null; deletedAt?: string | null; } interface IEndingConfig { enabled: boolean; completeWithAI: boolean; } export { IEnding, IEndingConfig };