declare type Podcast = {
    title: string;
    slug: string;
    image_url: string;
};
export declare type PodcastEpisode = {
    type_of: string;
    id: number;
    path: string;
    image_url: string;
    title: string;
    podcast: Podcast;
};
export {};
