import React from "react"; interface HeaderProps { title?: string; subtitle?: string; } export declare function Header({ title, subtitle }: HeaderProps): React.JSX.Element; export {};