/** * Auto-generated file. Do not change. */ import { Type } from './Type'; import { TypedApiObject } from '../types/TypedApiObject'; export declare type Seaport = { /** * Type of the object */ readonly _object: Type.Seaport; /** * JSON-schema: string * @example "3901" */ readonly port_code?: string; }; export declare type LiftedSeaport = TypedApiObject & Seaport; /** * Lifts an object return from a Flexport API responses into the SDK domain by augmenting them with higher level properties. */ export declare const liftSeaport: (original: Seaport) => LiftedSeaport;