import * as $dara from '@darabonba/typescript'; export declare class DescribeApisByBackendResponseBodyApiInfoListApiInfo extends $dara.Model { apiId?: string; apiName?: string; description?: string; groupId?: string; groupName?: string; method?: string; path?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeApisByBackendResponseBodyApiInfoList extends $dara.Model { apiInfo?: DescribeApisByBackendResponseBodyApiInfoListApiInfo[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeApisByBackendResponseBody extends $dara.Model { apiInfoList?: DescribeApisByBackendResponseBodyApiInfoList; /** * @remarks * The number of the current page. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries returned on each page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * CEB6EC62-B6C7-5082-A45A-45A204724AC2 */ requestId?: string; /** * @remarks * The total number of entries returned. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }