/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
import { type MaybeRefOrGetter } from 'vue';
import type { Editor } from 'ckeditor5';
/**
 * Hook that toggles readonly state on provided instance.
 */
export declare function useEditorReadOnly(instance: MaybeRefOrGetter<Editor | undefined>, disabled: MaybeRefOrGetter<boolean | undefined>): void;
