import React, { type ReactNode } from 'react'; import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; export interface TabbarProps { title: string; titleStyleProps?: StyleProp; onSeeMore?: () => void; showSeeMore?: boolean; renderSeemore?: ReactNode | string; tabbarStylesProps?: StyleProp; } declare const Tabbar: (props: TabbarProps) => React.JSX.Element; export default Tabbar; //# sourceMappingURL=Tabbar.d.ts.map