/** * Converts pixels (px) to points (pt). * * @param px - The value in pixels. * @param targetDpi - The DPI of the output unit. * @param sourceDpi - The DPI of the input unit. */ type PxToPtRawOptions = { errorMessage?: string; }; export declare function pxToPtRaw(px: string | number, targetDpi: string | number, sourceDpi: string | number, options?: PxToPtRawOptions): number; export {}; //# sourceMappingURL=pxToPtRaw.d.ts.map