import { SearchResponseHits } from '../models/SearchResponseHits'; export declare class SearchResponse { 'took'?: number; 'timed_out'?: boolean; 'aggregations'?: any; 'hits'?: SearchResponseHits; 'profile'?: any; 'scroll'?: string; 'warning'?: any; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }