import * as React from 'react'; import type { FieldAppSDK } from '@contentful/field-editor-shared'; import type { EditorOptions, WidgetType } from './types'; type FieldProps = { sdk: FieldAppSDK; widgetId?: WidgetType; isInitiallyDisabled?: boolean; renderFieldEditor?: (widgetId: WidgetType, sdk: FieldAppSDK, isInitiallyDisabled: boolean) => JSX.Element | false; getOptions?: (widgetId: WidgetType, sdk: FieldAppSDK) => EditorOptions; }; export declare const Field: React.FC; export {};