import { ProjectId, TesthubId, TestplanId, UserId, UserSnippet } from 'teambition-types'; export declare type TestplanCasesCount = { defaultGroupCase: number; total: number; undone: number; }; export interface TestplanSchema { _id: TestplanId; _creatorId: UserId; _projectId: ProjectId; name: string; startDate: string | null; dueDate: string | null; isDeleted: boolean; created: string; testcaseCount: TestplanCasesCount; testhubIds: TesthubId[]; updated: string; isSuspended: boolean; suspendedByUserId: UserId | null; suspendedDate: string | null; suspendedByUser?: UserSnippet | null; }