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