import { Shape } from '../shapes/Shape.js'; import { NodeShape } from '../shapes/SHACL.js'; import { LinkedQuery } from './SelectQuery.js'; import { AddId, NodeDescriptionValue, UpdatePartial } from './QueryFactory.js'; import { MutationQueryFactory } from './MutationQuery.js'; export interface CreateQuery extends LinkedQuery { type: 'create'; shape: NodeShape; description: NodeDescriptionValue; } export type CreateResponse = AddId; export declare class CreateQueryFactory> extends MutationQueryFactory { shapeClass: typeof Shape; readonly id: string; readonly description: NodeDescriptionValue; constructor(shapeClass: typeof Shape, updateObjectOrFn: U); getQueryObject(): CreateQuery>; }