export interface IEntityInfo { filePath: string; importTypes: ('external' | 'internal' | 'override')[]; index: number; entityType: | 'task' | 'connection' | 'puller' | 'pusher' | 'table' | 'schema' | 'report' | 'validations' | 'transformations' | 'dependencies'; entityIdVariable: string; entityNameVariable: string; entityId: string; entityName: string; }