type HeaderProps = { title: string; subtitle: string; showBackButton: boolean; showCloseButton: boolean; handleBack: () => void; handleClose: () => void; }; export declare function Header({ title, subtitle, showBackButton, showCloseButton, handleBack, handleClose, }: HeaderProps): import("react/jsx-runtime").JSX.Element; export {};