import type { Node } from '../Node'; import { Rect } from '../shapes/index'; /** Stable key for batching nodes with identical paint styles. */ export declare function paintStyleKey(node: Node): string; /** Rect eligible for fill batching (simple transforms, no effects). */ export declare function isBatchableRect(node: Node): node is Rect;