import { Base, Pagination } from '../base';
import { PodcastEpisode } from './types';
declare type SearchTagsParams = Pagination & {
    username?: string;
};
export declare class PodcastEpisodes extends Base {
    getPodcastEpisodes(params?: SearchTagsParams): Promise<PodcastEpisode[]>;
}
export {};
