import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * Code field widget - provides a code editor with syntax highlighting * Uses a simple textarea with monospace font * For advanced code editing, use the @object-ui/plugin-editor component */ export declare function CodeField({ value, onChange, field, readonly, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;