import type { YooEditor } from '../types';
import type { IsElementEmptyOptions } from './types';
/**
 * Check if element is empty (has no text content)
 *
 * @param editor - YooEditor instance
 * @param options - Check options
 * @returns true if element is empty, false otherwise
 *
 * @example
 * ```typescript
 * // Check if content is empty
 * const isEmpty = editor.isElementEmpty({
 *   blockId: 'accordion-1',
 *   type: 'accordion-list-item-content',
 *   path: [0, 1, 1]
 * });
 * ```
 */
export declare function isElementEmpty(editor: YooEditor, options: IsElementEmptyOptions): boolean;
//# sourceMappingURL=isElementEmpty.d.ts.map