import PropTypes from "prop-types"; import "./TopBar.scss"; declare const TopBar: { ({ svgUpdate, onClose }: any): import("react/jsx-runtime").JSX.Element; propTypes: { svgUpdate: PropTypes.Validator<(...args: any[]) => any>; onClose: PropTypes.Validator<(...args: any[]) => any>; }; }; export default TopBar;