import { default as React } from 'react'; import { ExpressionReturnType, ExpressionTypeContext } from './expression-types'; interface ExpressionEditorProps { value: string; onChange: (value: string) => void; typeContext?: ExpressionTypeContext; expectedReturnType?: ExpressionReturnType; placeholder?: string; multiline?: boolean; readOnly?: boolean; className?: string; id?: string; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; } export declare const ExpressionEditor: React.FC; export {};