import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum AddressCategoryId { Storefront = 1, MainOffice = 2, Warehouse = 3, Salesperson = 4, Other = 5, SellerRemitsTax = 6, MarketplaceRemitsTax = 7, NonPhysical = 8, Vendor = 9 } export declare class AddressCategoryIdConverter implements JsonCustomConvert { serialize(data: AddressCategoryId): AddressCategoryId; deserialize(enumType: string): AddressCategoryId; }