import { AttributeRenderer, IAttributeRendererOptions } from "./AttributeRenderer.js"; /** * Works with {@link Byte}, {@link Short}, {@link Integer}, {@link Long}, and {@link BigInteger} as well as * {@link Float}, {@link Double}, and {@link BigDecimal}. You pass in a format string suitable * for {@link Formatter#format}. *

* For example, {@code %10d} emits a number as a decimal int padding to 10 char. * This can even do {@code long} to {@code Date} conversions using the format string.

*/ export declare class NumberRenderer implements AttributeRenderer { toString(value: Number, options: IAttributeRendererOptions): string; }