import React from 'react'; import { type StyleProp, type TextStyle } from 'react-native'; interface Props { text: string; size?: number; color?: string; font?: string; styles?: StyleProp; flex?: number; numberOfLine?: number; } declare const Label: (props: Props) => React.JSX.Element; export default Label; //# sourceMappingURL=Label.d.ts.map