export interface Props { header: string | JSX.Element; isDirty: boolean; hideBackIcon?: boolean; hideTopBar?: boolean; isMagicLink?: boolean; onBackClick?: () => void; setShowConfirmationPopup?: (show: boolean) => void; } declare const BankAccountPageNavSection: ({ header, isDirty, hideBackIcon, hideTopBar, isMagicLink, onBackClick, setShowConfirmationPopup, }: Props) => import("react/jsx-runtime").JSX.Element; export default BankAccountPageNavSection;