import { Editor, Location, Range } from 'slate'; import { GetAboveBlockOptions } from './getAboveBlock'; export declare type GetRangeBeforeFromAboveBlockStartOptions = Omit; /** * Get the range from the start of the block above location to the start of location. */ export declare function getRangeBeforeFromAboveBlockStart(editor: Editor, at: Location, options?: GetRangeBeforeFromAboveBlockStartOptions): Range;