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