/** * @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 */ /** * @module ui/editorui/accessibilityhelp/accessibilityhelpcontentview */ import { type Locale } from '@ckeditor/ckeditor5-utils'; import { View } from '../../view.js'; import type { KeystrokeInfoDefinitions } from '@ckeditor/ckeditor5-core'; /** * The view displaying keystrokes in the Accessibility help dialog. */ export declare class AccessibilityHelpContentView extends View { /** * @inheritDoc */ constructor(locale: Locale, keystrokes: KeystrokeInfoDefinitions); /** * @inheritDoc */ focus(): void; /** * Creates `

Category label

...
` elements for each category of keystrokes. */ private _createCategories; /** * Creates `[

Optional label

]
...
` elements for each group of keystrokes in a category. */ private _createGroup; /** * Creates `
Keystroke label
Keystroke definition
` elements for each keystroke in a group. */ private _createGroupRow; }