디렉토리구조상 estimate에 estimate디렉토리 안에 모두 들어가있어서 index.ts에서 EstimatedPrice, CarInfoTitle, CarInfoSection을 모두 export 했었다.
index.ts에서 export 하는 파일이 다시 index.ts에서 import를 하게 되면 export <-> import 순환참조가 걸려서 warning이 발생!
이 경우에는 상대경로로 import 해야한다.