/// import * as Components from '@blueeast/bluerain-ui-interfaces'; import { ComponentStateProperties } from '../../components/ComponentState'; import { IconEnhancedProperties } from '../../components/IconEnhanced'; import { ImageBackgroundProperties } from '../../components/ImageBackground'; import { StatefulComponentProperties } from '../../components/StatefulComponent'; import { WallpaperProperties } from '../../components/Wallpaper'; import Registry from '../../registries/ComponentRegistry'; export interface ComponentRegistry extends Registry { ComponentState: React.ComponentType; IconEnhanced: React.ComponentType; ImageBackground: React.ComponentType; Page: React.ComponentType; StatefulComponent: React.ComponentType; Wallpaper: React.ComponentType; ActivityIndicator: React.ComponentType; AppBar: React.ComponentType; Avatar: React.ComponentType; Badge: React.ComponentType; Breadcrumb: React.ComponentType; Button: React.ComponentType; Card: React.ComponentType; Carousel: React.ComponentType; Checkbox: React.ComponentType; Chip: React.ComponentType; Color: React.ComponentType; Divider: React.ComponentType; DocumentSelectionState: React.ComponentType; Drawer: React.ComponentType; FormControl: React.ComponentType; Icon: React.ComponentType; List: React.ComponentType; Map: React.ComponentType; Modal: React.ComponentType; Picker: React.ComponentType; ProgressBar: React.ComponentType; SectionList: React.ComponentType; Slider: React.ComponentType; StatusBar: React.ComponentType; Switch: React.ComponentType; Tab: React.ComponentType; TabBar: React.ComponentType; Tabs: React.ComponentType; Text: React.ComponentType; TextInput: React.ComponentType; TouchableHighlight: React.ComponentType; TouchableOpacity: React.ComponentType; TouchableWithoutFeedback: React.ComponentType; View: React.ComponentType; WebView: React.ComponentType; }