import React from 'react'; import type { ITabBarProps } from './types'; declare const TabBar: React.MemoExoticComponent & { align?: "center" | "end" | "start" | undefined; isFitted?: boolean | undefined; size?: "sm" | "md" | "lg" | undefined; tablistRef?: React.RefObject | undefined; tabListProps?: import("react-native").ViewProps | undefined; } & React.RefAttributes>>; export default TabBar;