import type { RateLimitingRule } from './RateLimitingRule'; /** * @type RateLimitingRulesEnvelope: * * @property data: * */ export type RateLimitingRulesEnvelope = { data: Array; } & { [key: string]: any; };