/** * * Represents a numeric value paired with its precision (number of significant digits). * / */ export declare class ValueWithPrecision { /** * * The numeric value. */ value: number; /** * * The number of significant digits. */ precision: number; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): ValueWithPrecision; }