import type { ViewStyle, TextStyle } from 'react-native'; declare type Styles = { container: ViewStyle; header: TextStyle; headerIsolated: TextStyle; contentIsolated: ViewStyle; message: TextStyle; messageHasTitle: TextStyle; footer: ViewStyle; cancel: ViewStyle; confirm: ViewStyle; confirmText: TextStyle; borderTop: ViewStyle; borderLeft: ViewStyle; roundBarFooter: ViewStyle; roundBarMessage: TextStyle; roundBarConfirm: ViewStyle; roundBarConfirmText: TextStyle; roundBarCancel: ViewStyle; }; declare const createStyle: (theme: DiceUI.Theme) => Styles; export default createStyle;