export declare class SearchResponse { count: number; results?: Array; static isSearchResponse(obj: any): boolean; } export interface APISearchResponse { pageSize: number; results?: Array; currentPage: number; }