import type { ThingIdSource } from "./thing";
export type BoundIncludedSource = ThingIdSource;
/**
 * [API Reference](https://tai-kun.github.io/surrealdb.js/v2/api/data/bound-included)
 * @experimental
 */
export default class BoundIncluded<TValue extends BoundIncludedSource = BoundIncludedSource> {
    readonly value: TValue;
    constructor(source: TValue);
}
//# sourceMappingURL=bound-included.d.ts.map