export declare enum OrderSource {
    api = "api",
    dashboard = "dashboard",
    shopify = "shopify",
    dashboard_batch_upload = "dashboard_batch_upload",
    orderful = "orderful",
    dhl = "dhl"
}
export type OrderSourceType = keyof typeof OrderSource;
