import type { InsertElementOptions } from './types';
import type { YooEditor } from '../types';
/**
 * Insert element into a block
 *
 * @param editor - YooEditor instance
 * @param options - Insert options
 *
 * @example
 * ```typescript
 * // Insert at next position
 * editor.insertElement({
 *   blockId: 'accordion-1',
 *   type: 'accordion-list-item',
 *   props: { isExpanded: true },
 *   at: 'next',
 *   focus: true
 * });
 * ```
 */
export declare function insertElement(editor: YooEditor, options: InsertElementOptions): void;
//# sourceMappingURL=insertElement.d.ts.map