/** * Pydantic artifact path hints — optional per-module directory nesting. * * Entities/commands with an IR `module` emit under `models//…`. * Module-less names keep the historical flat `models/…` layout. */ export declare function pydanticEntityPathHint(entity: { name: string; module?: string; }): string; export declare function pydanticCommandPathHint(command: { name: string; module?: string; }): string; //# sourceMappingURL=path-hints.d.ts.map