import React from "react";
import { pantheonT } from "./types/pantheon";
declare const InPantheonPanel: ({ visible, setOpenInPantheonPanel, title, apiKey, pantheon, }: {
    setOpenInPantheonPanel: React.Dispatch<React.SetStateAction<boolean>>;
    visible: boolean;
    title?: string;
    apiKey: string;
    pantheon: pantheonT;
}) => React.JSX.Element;
export default InPantheonPanel;
