import type { IOutline } from "../publicApi";
/**
 * @description It returns the index of the immediate previous sibling for the provided outline node,
 * or throws if it does not find one.
 */
export declare function getIndexOfImmediatePreviousSibling(outline: IOutline, i: number): number;
