/** * % を px に変換し、数値として返す * 計算式: (percent * contextSize) / 100 * * @param {number|string} percent * @param {number|string} contextSize * @returns {number} */ type PercentToPxRawOptions = { errorMessage?: string; }; export declare function percentToPxRaw(percent: string | number, contextSize: string | number, options?: PercentToPxRawOptions): number; export {}; //# sourceMappingURL=percentToPxRaw.d.ts.map