import React from 'react'; import { FormItemProps } from './interface'; interface FormItemLabelProps extends Pick { showColon: boolean; prefix: string; htmlFor?: string; } declare const FormItemLabel: React.FC; export default FormItemLabel;