import { PodcastShow } from "../Interfaces/Show";
interface PagePagination {
    offSet?: number;
    limit?: number;
}
interface IOptions {
    id: string;
    pagePagination?: PagePagination;
}
export declare function getPodcastShow<T extends IOptions>(options: T): Promise<PodcastShow>;
export {};
//# sourceMappingURL=getPodcastShow.d.ts.map