/** * Custom RowLabel for Form Fields * * Displays field label and type instead of generic "Field 01" * Centralized implementation that receives data as props * * Copyright (c) 2025 QwickApps.com. All rights reserved. */ import React from 'react'; interface FormFieldLabelProps { data?: { label?: string; fieldName?: string; inputType?: string; required?: boolean; }; rowNumber?: number; } export declare const FormFieldRowLabel: React.FC; export {}; //# sourceMappingURL=FormFieldRowLabel.d.ts.map