import React from 'react'; export declare const fieldMapper: (field: any, boundaryRef: any, fieldWidth: any, keyName: any, mode: any) => React.JSX.Element; export declare const getFieldValidationErrorMessageDOM: (meta: any, index?: any, errorMessage?: any, testId?: any) => React.JSX.Element; export declare const AddInstanceButton: (props: any) => React.JSX.Element; export declare const DeleteDom: ({ iconTestId, labelTestId, labelText }: { iconTestId: any; labelTestId: any; labelText: any; }) => React.JSX.Element; export declare const ContextualDropdown: ({ contextualDropdownActionArray, field }: { contextualDropdownActionArray: any; field: any; }) => React.JSX.Element; export declare const contextualDropdownActionArray: (field: any, index: any, remove: any) => { label: React.JSX.Element; id: string; className: string; action: (e: any) => void; testId: string; disable: boolean; }[]; export declare const getTextFieldPlaceholderText: (field: any) => any; export declare const isFieldMultiple: (field: any) => any; export declare const isFieldMandatory: (field: any) => any; export declare const shouldShowInstruction: (field: any) => any; export declare const shouldShowHelpText: (field: any) => any; export declare const getFieldDefaultValue: (field: any) => any; export declare const getFieldMaxInstance: (field: any) => any; export declare const isGroupField: (field: any) => boolean; export declare const getFieldInstructionText: (field: any) => any; export declare const getFieldHelpText: (field: any) => any; export declare const isFieldUnique: (field: any) => any; export declare const getValidationErrorMessage: (field: any) => any; export declare const getFieldRegexPattern: (field: any) => any; export declare const getTextFieldMinLength: (field: any) => any; export declare const getTextFieldMaxLength: (field: any) => any; export declare const getNumberFieldMinValue: (field: any) => any; export declare const getNumberFieldMaxValue: (field: any) => any; export declare const getGroupFieldChildCount: (field: any) => any; export declare const getFieldHelpTextDOM: (field: any) => React.JSX.Element; export declare const getFieldTitle: (field: any) => React.JSX.Element; export declare const getFieldLabelDOM: (field: any) => React.JSX.Element; export declare const getFieldInstructionTextDOM: (field: any) => React.JSX.Element; export declare const ReadOnlyField: ({ width, showCopyIcon, value, copyLabel, copyIconSize, testId, copyContent }: any) => React.JSX.Element; export declare const SuggestWithAi: ({ field, AiSuggestionComponent, updateValue, boundaryRef }: { field: any; AiSuggestionComponent: any; updateValue: any; boundaryRef: any; }) => React.JSX.Element;