import { MovieParser, TvType, IMovieInfo, IEpisodeServer, StreamingServers, ISource, IMovieResult, ISearch } from '../../models'; declare class ViewAsian extends MovieParser { readonly name = "ViewAsian"; protected baseUrl: string; protected logo: string; protected classPath: string; supportedTypes: Set; search: (query: string, page?: number) => Promise>; fetchMediaInfo: (mediaId: string) => Promise; fetchEpisodeSources: (episodeId: string, server?: StreamingServers) => Promise; fetchEpisodeServers(episodeId: string, ...args: any): Promise; } export default ViewAsian;