import { BaseModel } from './baseModel'; import { Country } from './country'; import { SKU } from './sku'; export interface SkuHsnCode extends BaseModel { country: Country | string; hsnCode: string; sku: SKU | string; }