import React from 'react'; import { type FormField } from '../../types'; interface FieldLabelProps { field: FormField; /** * Custom label text to override the default field label. */ customLabel?: string; } declare const FieldLabel: React.FC; export default FieldLabel; //# sourceMappingURL=field-label.component.d.ts.map