export type CleanupListOfValuesParams = { floatPrecision?: number | undefined; leadingZero?: boolean | undefined; defaultPx?: boolean | undefined; convertToPx?: boolean | undefined; }; /** * @typedef CleanupListOfValuesParams * @property {number=} floatPrecision * @property {boolean=} leadingZero * @property {boolean=} defaultPx * @property {boolean=} convertToPx */ export declare const name = "cleanupListOfValues"; export declare const description = "rounds list of values to the fixed precision"; /** * Round list of values to the fixed precision. * * @example * * ⬇ * * * * ⬇ * * * @author kiyopikko * * @type {import('../lib/types.js').Plugin} * @since 0.5.1 */ export declare const fn: import('../lib/types.js').Plugin;