/** * Canvas pixel-alignment helpers for crisp 1px lines and sharper text. * Coordinates are in CSS/logical space (before or after setTransform(dpr)). */ /** Snap a coordinate to the center of a physical pixel (crisp 1px strokes). */ export declare function snapLineCoord(value: number): number; /** Snap label positions to whole pixels (reduces sub-pixel blur on fillText). */ export declare function snapLabelCoord(value: number): number;