/** * px を % に変換し、文字列で返す * % は親要素などの文脈に依存するため、contextSize を必ず明示してください * @param {number|string} px * @param {number|string} contextSize * @param {object} options * @param {number} options.precision * @param {string} options.errorMessage * @returns {string} */ type PxToPercentOptions = { precision?: number; errorMessage?: string; }; export declare function pxToPercent(px: string | number, contextSize: string | number, options?: PxToPercentOptions): string; export {}; //# sourceMappingURL=pxToPercent.d.ts.map