import { type DocumentContent, type DocumentContext } from "../../document/index.js";
import { AbstractJsonable } from "../abstractJsonable.js";
import type { JsonNumber } from "../jsonTypes.js";
export declare class NumberJsonable extends AbstractJsonable {
    private readonly content;
    readonly type: "number";
    constructor(content: DocumentContent, probability: number | undefined, weight: number | undefined);
    protected toJSONImpl(keyOrIndex: string | number, context: DocumentContext): JsonNumber | undefined;
}
