/** * @category Order * @customNamespace Order */ export declare const OrderGroupWorkflowEvents: { /** * Emitted when an order group is created. * * @eventPayload * ```ts * { * id, // The ID of the order group * } * ``` */ CREATED: string; }; export declare const SellerWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; SUSPENDED: string; UNSUSPENDED: string; APPROVED: string; TERMINATED: string; UNTERMINATED: string; }; export declare const SellerMemberWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; }; export declare const MemberInviteWorkflowEvents: { CREATED: string; ACCEPTED: string; }; export declare const OfferWorkflowEvents: { CREATED: string; UPDATED: string; DELETED: string; };