以下のコードで、他のモジュールから`User`型を使用するために必要な記述はどれですか? ```typescript // types.ts interface User { id: number; name: string; } ```