import React from "react"; import { ZeplinLink } from "../types/ZeplinLink"; interface ZeplinPanelProps { zeplinLink: ZeplinLink[] | string; onLogout: () => void; } declare const ZeplinPanel: React.FC; export default ZeplinPanel;