import type { DataRect } from "../types.js"; /** * Returns true when `pos` is strictly inside `rect` on all four sides, meaning * none of its edges are flush with the corresponding edge of `rect`. */ export declare function isFullyWithinRect(pos: DataRect, rect: DataRect): boolean;