import { BoundExcluded as Base, type BoundExcludedSource } from "@tai-kun/surrealdb/decodeonly-datatypes";
import { CBOR_TAG_BOUND_EXCLUDED, type Encodable } from "./spec";
export type * from "../decode-only/bound-excluded";
/**
 * [API Reference](https://tai-kun.github.io/surrealdb.js/v2/api/data/bound-excluded)
 * @experimental
 */
export default class BoundExcluded<TValue extends BoundExcludedSource = BoundExcludedSource> extends Base<TValue> implements Encodable {
    toString(): string;
    toCBOR(): [
        tag: typeof CBOR_TAG_BOUND_EXCLUDED,
        value: TValue
    ];
    toJSON(): string;
    toSurql(): string;
    toPlainObject(): {
        value: TValue;
    };
}
//# sourceMappingURL=bound-excluded.d.ts.map