/** * SHACL Serializer * * 将 Shape 定义转换为 SHACL Turtle 格式 */ import type { Shape } from './types'; /** * 生成 SHACL Turtle 格式 */ export declare function toSHACL(shape: Shape): string; //# sourceMappingURL=shacl.d.ts.map