import { Base } from '../base';
export declare class Podcast extends Base {
    getHome(): Promise<any>;
    getTop(): Promise<any>;
    getUrl(podcastId: string): Promise<any>;
    getCurrentMedia(podcastId: string): Promise<any>;
    getDetail(podcastId: string): Promise<any>;
    getComments(podcastId: string): Promise<any>;
    getAll(): Promise<any>;
}
