/** * px を % に変換し、数値として返す * @param px 対象の px 値 * @param contextSize 基準となるサイズ(親要素など) * @returns number (% 値。100 = 100%) */ type PxToPercentRawOptions = { errorMessage?: string; }; export declare function pxToPercentRaw(px: string | number, contextSize: string | number, options?: PxToPercentRawOptions): number; export {}; //# sourceMappingURL=pxToPercentRaw.d.ts.map