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