import type { LearnerData } from './LearnerData'; import type { UserInfo } from './UserInfo'; export type LearnerDetailsResponse = { user: UserInfo; data: LearnerData; };