import { type TemplateOptions } from "../types/types"; /** * 새로운 엔티티를 생성합니다. * entityId는 반드시 CamelCase 형식이어야 합니다. */ export declare function createEntity(form: Omit & { title: string; }): Promise; /** * 엔티티를 삭제합니다. * parentId가 있는 서브 엔티티의 경우 entity.json만 삭제하고, * 루트 엔티티의 경우 디렉토리 전체와 타겟 디렉토리를 삭제합니다. */ export declare function delEntity(entityId: string): Promise<{ delPaths: string[]; }>; //# sourceMappingURL=entity-operations.d.ts.map