import { BoxProps } from '../../base/components/Box'; export interface NavbarProps extends BoxProps { showBack?: boolean; onBack?: () => void; onClose?: () => void; } export declare function Navbar(props: NavbarProps): import("react/jsx-runtime").JSX.Element;