import { Library, Relation, ResponseConfig, ResponseHeaders, ResponseLinks } from './global'; export declare type CollectionResponse = { key: string; version: number; library: Library; links?: ResponseLinks; meta: Meta; data: Collection; }; export declare type Collection = { key: string; version: number; name: string; parentCollection?: boolean | string; relations?: Relation; }; declare type Meta = { numCollections: number; numItems: number; }; export declare type UpdateCollectionResponse = { body: string; status: number; statusText: string; headers: ResponseHeaders; config: ResponseConfig; }; export {};