import type { Path } from 'slate';
import type { YooEditor } from '../types';
import type { GetElementPathOptions } from './types';
/**
 * Get path of an element in the Slate tree
 *
 * @param editor - YooEditor instance
 * @param options - Get options
 * @returns Element path or null if not found
 *
 * @example
 * ```typescript
 * // Get path of element
 * const path = editor.getElementPath({
 *   blockId: 'accordion-1',
 *   element: accordionItemElement
 * });
 * ```
 */
export declare function getElementPath(editor: YooEditor, options: GetElementPathOptions): Path | null;
//# sourceMappingURL=getElementPath.d.ts.map