import {ViewProps} from 'react-native'; declare type LabelType = | 'basic' | 'tooltip' | 'optional' | 'required' | 'character-count'; declare type LabelSize = 'small' | 'medium' | 'large'; export interface LabelProps extends ViewProps { type?: LabelType; size?: LabelSize; totalCharacterNumber?: number; currentCharacterNumber?: number; children?: string; } export {};