import React from 'react';
import { FormItemsProps } from '../types';
import { ViewStyle } from 'react-native';
declare const Label: ({ v, labelStyle }: {
v: Partial<FormItemsProps>;
labelStyle?: ViewStyle | undefined;
}) => React.JSX.Element;
export default Label;