import * as React from "react"; declare type Props = Readonly<{ hidePanel: () => void; }>; declare const PanelTop: ({ hidePanel }: Props) => React.ReactElement; export default PanelTop;