import * as $dara from '@darabonba/typescript'; import { ListConsumerAPIKeysOutput } from "./ListConsumerApikeysOutput"; export declare class ListConsumerAPIKeysResult extends $dara.Model { /** * @remarks * The request status. `SUCCESS` indicates that the request was successful. Otherwise, this field returns the error type. * * @example * SUCCESS */ code?: string; /** * @remarks * The list of consumer API keys. * * @example * {} */ data?: ListConsumerAPIKeysOutput; /** * @remarks * The unique request ID. Use this ID for issue tracking. * * @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; }); }