import { TextStyle, ViewStyle, ImageStyle } from 'react-native'; import { Theme } from '../../theme'; export interface ActionSheetStyles { container: ViewStyle; content: ViewStyle; optionWrapper: ViewStyle; optionContent: TextStyle; title: TextStyle; footerWrapper: ViewStyle; isSelected: TextStyle; checkIcon: ImageStyle; footerButton: ViewStyle; cancel: ViewStyle; cancelText: TextStyle; confirmText: TextStyle; } declare const _default: (theme: Theme) => ActionSheetStyles; export default _default;