import type { DOMElement } from '../dom.js'; export type CursorDeclaration = { /** Display column (terminal cell width) within the declared node */ readonly relativeX: number; /** Line number within the declared node */ readonly relativeY: number; /** The ink-box DOMElement whose yoga layout provides the absolute origin */ readonly node: DOMElement; }; /** * Setter for the declared cursor position. */ export type CursorDeclarationSetter = (declaration: CursorDeclaration | null, clearIfNode?: DOMElement | null) => void; declare const CursorDeclarationContext: import("react").Context; export default CursorDeclarationContext; //# sourceMappingURL=CursorDeclarationContext.d.ts.map