import { PathStyleProps } from '../Path'; declare type LineShape = { x1: number; y1: number; x2: number; y2: number; }; declare type RectShape = { x: number; y: number; width: number; height: number; r?: number | number[]; }; export declare function subPixelOptimizeLine(outputShape: Partial, inputShape: LineShape, style: Pick): LineShape; export declare function subPixelOptimizeRect(outputShape: Partial, inputShape: RectShape, style: Pick): RectShape; export declare function subPixelOptimize(position: number, lineWidth?: number, positiveOrNegative?: boolean): number; export {};