import { ViewProps } from "@tarojs/components/types/View"; import { ReactNode } from "react"; import { SafeAreaPosition } from "../safe-area"; export interface TabbarProps extends ViewProps { defaultValue?: any; value?: any; bordered?: boolean; fixed?: boolean; placeholder?: boolean; safeArea?: SafeAreaPosition; children?: ReactNode; onChange?(value: any): void; } declare function Tabbar(props: TabbarProps): JSX.Element; export default Tabbar;