import { Entry, EntryCollection, Space, Asset, ContentfulCollection } from 'contentful'; export declare namespace Content { function getEntry(entryId: string, query?: any): Promise>; function getEntries(query: any): Promise>; function getSpace(): Promise; function getAsset(id: string): Promise; function getAssets(query: any): Promise>; }