import { EditorFocusOptions } from 'lexical/LexicalEditor';
export declare function useActions(): {
    handleClear: () => void;
    handleEditable: (isEditable: boolean) => void;
    initiateValue: (defaultValue: string) => void;
    getValue: () => string;
    handleFocus: (callbackFn?: () => void, options?: EditorFocusOptions) => void;
};
