import React from "react";
declare const EpisodesPanel: ({ visible, setOpenEpisodesPanel, title, series_id, apiKey, }: {
    setOpenEpisodesPanel: React.Dispatch<React.SetStateAction<boolean>>;
    visible: boolean;
    title: string;
    series_id: number;
    apiKey: string;
}) => React.JSX.Element;
export default EpisodesPanel;
