import { type mongodb, type TimestampFields } from '@unchainedshop/mongodb'; export declare const WarehousingProviderType: { readonly PHYSICAL: "PHYSICAL"; readonly VIRTUAL: "VIRTUAL"; }; export type WarehousingProviderType = (typeof WarehousingProviderType)[keyof typeof WarehousingProviderType]; export type WarehousingConfiguration = { key: string; value: string; }[]; export type WarehousingProvider = { _id: string; type: WarehousingProviderType; adapterKey: string; configuration: WarehousingConfiguration; } & TimestampFields; export declare const WarehousingProvidersCollection: (db: mongodb.Db) => Promise>;