/** * @type CustomerGroupRule: Customer Group Rule * * @property description: Customer Group Rule description. Describing its conditions in natural language. * */ export type CustomerGroupRule = { description: string; } & { [key: string]: any; };