import * as $dara from '@darabonba/typescript'; export declare class DescribeForwardTableEntriesResponseBodyForwardTableEntriesForwardTableEntry extends $dara.Model { externalIp?: string; externalPort?: string; forwardEntryId?: string; forwardTableId?: string; internalIp?: string; internalPort?: string; ipProtocol?: string; status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeForwardTableEntriesResponseBodyForwardTableEntries extends $dara.Model { forwardTableEntry?: DescribeForwardTableEntriesResponseBodyForwardTableEntriesForwardTableEntry[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeForwardTableEntriesResponseBody extends $dara.Model { /** * @remarks * The collection of DNAT entries. */ forwardTableEntries?: DescribeForwardTableEntriesResponseBodyForwardTableEntries; /** * @remarks * The page number. */ pageNumber?: number; /** * @remarks * The number of entries per page. */ pageSize?: number; /** * @remarks * The request ID. */ requestId?: string; /** * @remarks * The total number of entries. */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }