import React from "react";
interface HeaderProps {
    isDev?: boolean;
}
declare const Header: React.FC<HeaderProps>;
export default Header;
