/** * The status of the [Vendor](entity:Vendor), * whether a [Vendor](entity:Vendor) is active or inactive. */ export declare const VendorStatus: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type VendorStatus = (typeof VendorStatus)[keyof typeof VendorStatus];