import React from 'react'; export interface FormItemProps { label?: string; error?: string; showError?: boolean; required?: boolean; columnSpan?: 1 | 2; onLabelClick?: React.MouseEventHandler; labelAs?: string | React.JSXElementConstructor; } declare const Item: React.FC; export default Item;