import type { ExpressionEditorProps } from "./types"; import type { PropsWithChildren } from "react"; export declare function ExpressionEditor({ value, onChange: onValueChange, tokenize, highlight: Highlighter, completionProvider, placeholder, disabled, readOnly, className, style, children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;