import * as $dara from '@darabonba/typescript'; import { ListModelConnectionsOutput } from "./ListModelConnectionsOutput"; export declare class ListModelConnectionsResult extends $dara.Model { /** * @remarks * Indicates the request status. A value of SUCCESS means the request was successful. For failed requests, this field contains the corresponding error type. * * @example * SUCCESS */ code?: string; /** * @remarks * The list of model connections. * * @example * {} */ data?: ListModelConnectionsOutput; /** * @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; }); }