/** * Created by nghinv on Sun Jun 13 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; export interface ContainerProps { backgroundColor?: string; style?: StyleProp; children?: React.ReactNode; renderBackground?: () => React.ReactNode | React.ReactNode; } declare function Container(props: ContainerProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;