export interface Response { notice: string } export interface ContentstackCollection extends Response { items: T[] count: number } export interface EntryCollection extends ContentstackCollection { schema?: object content_Type?: object } export type AssetResponseType = | 'arraybuffer' | 'blob' | 'stream';