import React from 'react'; import { WebFormField } from '@qite/tide-client'; interface FieldLabelProps { field: WebFormField; htmlFor?: string; id?: string; as?: 'label' | 'span'; } declare const FieldLabel: React.FC; export default FieldLabel;