/**
 * @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 { ViewDowncastWriter, ViewElement } from 'ckeditor5/src/engine.js';
/**
 * @module html-support/integrations/integrationutils
 */
/**
 * Returns the first view element descendant matching the given view name.
 * Includes view element itself.
 *
 * @internal
 */
export declare function getDescendantElement(writer: ViewDowncastWriter, containerElement: ViewElement, elementName: string): ViewElement | undefined;
