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