import { ExpressionFunction } from '../../types'; export declare const ExpressionEditorContext: import("react").Context<{ textAreaRef: React.MutableRefObject; selectedFunction: ExpressionFunction | null; setSelectedFunction: (fn: ExpressionFunction) => void; }>; export declare const useExpressionEditor: () => { textAreaRef: React.MutableRefObject; selectedFunction: ExpressionFunction | null; setSelectedFunction: (fn: ExpressionFunction) => void; };