import { ApiResponse } from './Api'; export type Country = { states: State[]; stateLabel: string; name: string; }; export type State = { name: string; }; export type GetCountryRequest = undefined; export type GetCountryResponse = ApiResponse<{ countries: Country[] }>;