import type { Decimal } from "decimal.js";
import { type NumberFormatInternal, type NumberFormatPart } from "../types/number.js";
export declare function FormatNumericToParts(nf: Intl.NumberFormat, x: Decimal, implDetails: {
	getInternalSlots(nf: Intl.NumberFormat): NumberFormatInternal;
}): NumberFormatPart[];
