export interface RuleBase { /** The unique identifier for the rule. */ id?: string | undefined; /** The name of the rule. */ name?: string | undefined; /** The description of the rule. */ description?: string | undefined; /** The unique slug for the rule used in API requests. */ slug?: string | undefined; }