import React from 'react';
import type { InputProps, FieldValue } from '@strapi/strapi/admin';
type CKEditorFieldProps = Readonly<InputProps & FieldValue & {
    labelAction?: React.ReactNode;
    attribute: {
        options: {
            preset: string;
            maxLengthWords: number;
            maxLengthCharacters: number;
        };
        pluginOptions?: {
            i18n?: {
                localized?: boolean;
            };
        };
    };
}>;
declare const MemoizedField: React.MemoExoticComponent<React.ForwardRefExoticComponent<CKEditorFieldProps & React.RefAttributes<{
    focus: () => void;
}>>>;
export { MemoizedField as Field };
