UNPKG

422 BTypeScriptView Raw
1/// <reference types="react" />
2import React from 'react';
3import { ViewProperties, TextStyle } from 'react-native';
4export interface label {
5 title?: string;
6 el?: React.ReactElement<any>;
7 style?: TextStyle | TextStyle[];
8}
9export interface PropsDefine extends ViewProperties {
10 label?: label;
11}
12export default class Label extends React.Component<PropsDefine, any> {
13 render(): React.ReactElement<any>;
14}