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