import { Team } from './team'; import { User } from 'ngo-login-client'; export interface Space { name: string; path: String; privateSpace?: boolean; teams: Team[]; defaultTeam: Team; id: string; attributes: SpaceAttributes; type: string; links: SpaceLink; relationships: SpaceRelationships; relationalData?: RelationalData; } export declare class SpaceLink { self: string; filters?: string; workitemlinktypes?: string; workitemtypes?: string; } export declare class SpaceRelationships { collaborators: SpaceRelatedLink; 'owned-by': { data: { id: string; type: string; }; }; } export declare class SpaceRelatedLink { links: { related: string; }; } export declare class SpaceAttributes { assignedId: string; name: string; description: string; 'updated-at': string; 'created-at': string; version: number; } export declare class RelationalData { creator?: User; }