export declare const createStyles: (theme?: "light" | "dark") => { container: { backgroundColor: string; borderBottomWidth: number; borderBottomColor: string; }; scrollView: { flexGrow: number; }; scrollContent: { flexDirection: "row"; alignItems: "center"; }; tabItem: { paddingVertical: number; paddingHorizontal: number; position: "relative"; }; tabItemCenter: { alignItems: "center"; justifyContent: "center"; }; tabText: { fontSize: number; color: string; fontWeight: "400"; }; activeTabText: { color: string; fontWeight: "600"; }; disabledTabText: { color: string; }; tabIcon: { marginBottom: number; }; indicator: { position: "absolute"; bottom: number; backgroundColor: string; }; badge: { position: "absolute"; top: number; right: number; minWidth: number; height: number; borderRadius: number; backgroundColor: string; alignItems: "center"; justifyContent: "center"; paddingHorizontal: number; }; badgeText: { fontSize: number; color: string; fontWeight: "600"; }; }; export default createStyles;