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