import { SkProductListItem } from "./product"; export declare enum SkShippingStatus { Prepare = "PREPARE", Progress = "PROGRESS", Done = "DONE", Fail = "FAIL" } export declare enum SkShippingMethod { Normal = "NORMAL", Normal2 = "NORMAL2", Quick = "QUICK", Visit = "VISIT", Software = "SOFTWARE", SoftwareRealtime = "SOFTWARE_REALTIME", Howser = "HOWSER", Howser2 = "HOWSER2" } export interface ISkShippingInfo { id?: number; memo?: string; method?: SkShippingMethod; status?: SkShippingStatus; orderItemId?: number; productInfo?: SkProductListItem; amount?: number; shippingCompanyName?: string; shippingCompanyCode?: string; trackingCode?: string; edeliveryInfo?: string; } export interface ISkShipping { id?: number; receiverName?: string; email?: string; phone?: string; phone2?: string; zipCode?: string; address?: string; address2?: string; infoList?: ISkShippingInfo[]; hardwareShipping?: boolean; softwareShipping?: boolean; } export declare function getSkShippingMethodText(method: SkShippingMethod): "택배 배송" | "착불 배송" | "퀵 배송 (착불)" | "방문 수령" | "전자배송(수동)" | "전자배송(실시간)" | "가구 전문 배송(착불)";