/// export interface HeaderProps { title: string; subtitle?: string; logoUrl?: string; } export declare const Header: ({ title, subtitle, logoUrl }: HeaderProps) => JSX.Element;