import * as React from 'react'; import type { FieldAppSDK, Entry } from '@contentful/field-editor-shared'; type FieldWrapperProps = { name: string; sdk: FieldAppSDK; /** * Generates a link to another entry with the same value when a "non unique" validation error occurs. */ getEntryURL?: (entry: Entry) => string; className?: string; showFocusBar?: boolean; children: React.ReactNode; renderHeading?: (name: string) => JSX.Element | null; renderHelpText?: (helpText: string) => JSX.Element | null; }; export declare const FieldWrapper: React.FC; export {};