export interface CountryInfo { id: string; code: string; name: string; } export interface StateInfo { label: string; value: string; code: string; } export type CountriesResponse = CountryInfo[]; export type StatesResponse = StateInfo[]; //# sourceMappingURL=types.d.ts.map