export interface ElasticResult { took: number; timed_out: boolean; _shards: { total: number; successful: number; skipped: number; failed: number; }; hits: { total: { value: number; relation: string; } max_score: any; // TBD hits: any[] // TBD }; aggregations: T; }