import type { Lix } from "../lix/open-lix.js"; import type { LixLabel } from "./schema-definition.js"; /** * Creates a label that can be attached to change sets. * * Labels help categorise change sets, for example "checkpoint" or * "reviewed". They are simple name identifiers stored per version. * * @example * ```ts * const label = await createLabel({ lix, name: "checkpoint" }) * ``` */ export declare function createLabel(args: { lix: Pick; id?: LixLabel["id"]; name: LixLabel["name"]; lixcol_version_id?: string; }): Promise; //# sourceMappingURL=create-label.d.ts.map