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