/** * % を px に変換し、文字列で返す * @param {number|string} percent * @param {number|string} contextSize * @param {PercentToPxOptions} options * @param {number} options.precision - 小数点以下の桁数(デフォルト: 3) * @param {string} options.errorMessage - エラーメッセージ * @returns {string} */ type PercentToPxOptions = { precision?: number; errorMessage?: string; }; export declare function percentToPx(percent: string | number, contextSize: string | number, options?: PercentToPxOptions): string; export {}; //# sourceMappingURL=percentToPx.d.ts.map