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