import type { DataItem } from "@tai-kun/surrealdb/cbor";
export type DecimalSource = DataItem.Utf8String.FixedLength["value"];
/**
 * [API Reference](https://tai-kun.github.io/surrealdb.js/v2/api/data/decimal)
 */
export default class Decimal {
    protected readonly _value: string;
    constructor(source: DecimalSource);
    toString(): string;
}
//# sourceMappingURL=decimal.d.ts.map