import { ViewProps } from "@tarojs/components/types/View"; import { ReactNode } from "react"; interface NavBarLeftProps extends ViewProps { icon?: ReactNode; children?: ReactNode; } export declare function NavBarLeft(props: NavBarLeftProps): JSX.Element; export default NavBarLeft;