/// import React from 'react'; import { ViewProperties, TextStyle } from 'react-native'; export interface label { title?: string; el?: React.ReactElement; style?: TextStyle | TextStyle[]; } export interface PropsDefine extends ViewProperties { label?: label; } export default class Label extends React.Component { render(): React.ReactElement; }