import React from "react"; import { PanelProps, PushedProps, SocailLink } from "../types"; interface Props extends PanelProps, PushedProps { showMenu: boolean; isMobile: boolean; href?: string; logo?: string; logoSize?: string; titleFirstPart?: string; titleSecondPart?: string; togglePush: () => void; socials?: Array; } declare const Panel: React.FC; export default Panel;