import { ViewStyle, TextStyle } from 'react-native'; import type { PopoverTheme } from './type'; interface Styles { action: ViewStyle; actionBorder: ViewStyle; actionText: TextStyle; arrow: ViewStyle; content: ViewStyle; popover: ViewStyle; transparentOverlay: ViewStyle; iconWrapper: ViewStyle; actionTextWithIcon: TextStyle; disabledActionText: TextStyle; } export declare const createStyle: (theme: DiceUI.Theme, color: PopoverTheme) => Styles; export {};