import type { Entity as ToolboxEntity } from "../../toolbox.js"; import type { IEntityReadBatchBuilder, IEntityReadBatchBuilderGetResponse, IEntityReadBatchKey } from "./types.js"; import type { Entity } from "./Entity.js"; import type { EntityOption } from "./getEntity.js"; export declare class EntityReadBatchBuilder implements IEntityReadBatchBuilder { private readonly entity; constructor(entity: EntityOption); get(item: IEntityReadBatchKey): IEntityReadBatchBuilderGetResponse; } export declare const createEntityReadBatchBuilder: (entity: ToolboxEntity | Entity) => IEntityReadBatchBuilder;