import { ReactNode } from 'react'; export interface HeaderProps { title: string; onBack?: () => void; rightComponent?: ReactNode; }