import { KalturaObjectMetadata } from '../kaltura-object-base';
import { KalturaESearchHistory } from './KalturaESearchHistory';
import { KalturaESearchAggregationResponseItem } from './KalturaESearchAggregationResponseItem';
import { KalturaListResponse, KalturaListResponseArgs } from './KalturaListResponse';
export interface KalturaESearchHistoryListResponseArgs extends KalturaListResponseArgs {
}
export declare class KalturaESearchHistoryListResponse extends KalturaListResponse {
    readonly objects: KalturaESearchHistory[];
    readonly aggregations: KalturaESearchAggregationResponseItem[];
    constructor(data?: KalturaESearchHistoryListResponseArgs);
    protected _getMetadata(): KalturaObjectMetadata;
}
