import type { PathArray } from '../types';
/**
 * Rounds the values of a `PathArray` instance to
 * a specified amount of decimals and returns it.
 */
export declare function roundPath(path: PathArray, round: number | 'off'): PathArray;
