import * as React from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { RequiredMark } from './Form'; import { FormItemStyle } from './style'; export interface FormItemLabelProps { label?: React.ReactNode; labelStyle?: StyleProp; styles: Partial; /** * @internal Used for pass `requiredMark` from `
` */ requiredMark?: RequiredMark; } declare const FormItemLabel: React.FC; export default FormItemLabel;