import type { TextStyle, ViewStyle } from 'react-native'; import type { BadgeProps } from './type'; interface Styles { badge: TextStyle; dot: TextStyle; fixed: TextStyle; wrapper: ViewStyle; badgeContainer: ViewStyle; } declare type ExtraParams = Pick; export declare const createStyle: (theme: DiceUI.Theme, { color }: ExtraParams) => Styles; export {};