import type { ViewStyle, TextStyle } from 'react-native'; import type { PopupProps, PopupPosition } from './type'; interface Styles { wrapper: ViewStyle; icon: ViewStyle; round: ViewStyle; title: TextStyle; } declare type Params = Pick; export declare const createStyle: (theme: DiceUI.Theme, params: Params) => Styles; export declare const getOverlayStyle: (position: PopupPosition) => ViewStyle; export {};