type PxToPtOptions = { targetDpi?: string | number; sourceDpi?: string | number; /** * Decimal places to round to. Defaults to 3. * Trailing zeros will be removed. */ precision?: number; errorMessage?: string; }; /** * Converts pixels to points string (e.g., "12pt"). */ export declare function pxToPt(px: string | number, options?: PxToPtOptions): string; export {}; //# sourceMappingURL=pxToPt.d.ts.map