import * as $dara from '@darabonba/typescript'; import { ListRateLimitRulesOutput } from "./ListRateLimitRulesOutput"; export declare class ListRateLimitRulesResult extends $dara.Model { /** * @remarks * A value of `SUCCESS` indicates a successful request. If the request fails, an error code is returned. * * @example * SUCCESS */ code?: string; /** * @remarks * Detailed information about the rate limit rules. * * @example * {} */ data?: ListRateLimitRulesOutput; /** * @remarks * The unique request ID, used for troubleshooting. * * @example * F8A0F5F3-0C3E-4C82-9D4F-5E4B6A7C8D9E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }