interface Item { id: string; title: string; description: string; type: string; subgenrename: string; language: string; thumbnail_2x3: string | null; thumbnail_16x9: string | null; total: string; year_of_release: string; tagtext: string; } interface Container { id: number; containertype: string; slug: string; title: string; description?: string; contenttype: string; total: number; item: Item[]; } interface SearchData { container: Container[]; } declare class Search { static getData(keyword: string): Promise; } export default Search;