import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { SearchResult } from './searchResult'; export declare const importsMapSearchResultsCollection: { LinkElement: typeof LinkElement; SearchResult: typeof SearchResult; }; /** * The collection of search results. */ export declare class SearchResultsCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of comments. */ resultsList: Array; constructor(init?: Partial); collectFilesContent(_resultFilesContent: Array): void; validate(): void; }