/** * Created by nghinv on Wed May 05 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewStyle, StyleProp, TextStyle, ViewProps, TextProps } from 'react-native'; export interface EnvironmentBannerProps { visible?: boolean; backgroundColor?: string; containerStyle?: StyleProp; containerProps?: ViewProps; title: string; titleColor?: string; titleStyle?: TextStyle; titleProps?: TextProps; upperCase?: boolean; } declare function EnvironmentBanner(props: EnvironmentBannerProps): JSX.Element | null; declare namespace EnvironmentBanner { var defaultProps: { backgroundColor: string; visible: boolean; titleColor: string; upperCase: boolean; }; } declare const _default: React.MemoExoticComponent; export default _default;