import { Decimal128, ObjectId } from 'mongodb';
export declare class TypeConverter {
    static bigintToDecimal128(value: bigint): Decimal128;
    static decimal128ToBigint(value: Decimal128): bigint;
    static numberToDecimal128(value: number): Decimal128;
    static stringToObjectId(value: string): ObjectId;
    static decimal128ToBigintArray(values: Decimal128[]): bigint[];
    static bigintToDecimal128Array(values: bigint[]): Decimal128[];
}
