import React from "react"; type LogoHeaderProps = { title: string; tagline: string; logoUrl?: string; }; declare const LogoHeader: React.FC; export default LogoHeader;