import type { ViewStyle, TextStyle } from 'react-native'; import type { ProgressProps } from './type'; interface Styles { wrapper: ViewStyle; portion: ViewStyle; pivot: TextStyle; pivotContainer: ViewStyle; } declare type ExtraParams = Pick; export declare const createStyle: (theme: DiceUI.Theme, params: ExtraParams) => Styles; export {};