import type { ViewProps } from "@tarojs/components/types/View"; import { type ReactNode } from "react"; import type { SafeAreaPosition } from "../safe-area"; export interface NavbarProps extends ViewProps { bordered?: boolean; fixed?: boolean; nativeSafeTop?: boolean; placeholder?: boolean; safeArea?: SafeAreaPosition; title?: ReactNode; children?: ReactNode; } declare function Navbar(props: NavbarProps): JSX.Element; export default Navbar;