import { FormFieldData } from "./interface"; /** * Utility function to get input field data and attributes * @param fieldName - The Name of the form field. * @returns - An object containing the field's value and constraints (type, maxLength, etc.). */ export declare const createFormFieldData: (fieldName: string) => FormFieldData;