import type { YooEditor } from '../types';
import type { GetPointOptions } from './types';
/**
 * Get anchor point from Slate selection
 *
 * @param editor - YooEditor instance
 * @param options - Get point options
 * @returns Anchor point or null
 *
 * @example
 * ```typescript
 * // Get anchor point from current selection
 * const anchor = Selection.getAnchor(editor);
 *
 * // Get anchor point from specific block
 * const anchor = Selection.getAnchor(editor, { at: 0 });
 * ```
 */
export declare function getAnchor(editor: YooEditor, options?: GetPointOptions): any;
//# sourceMappingURL=getAnchor.d.ts.map