import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class PortRange { From?: Value; To?: Value; constructor(properties: PortRange); } export declare class Icmp { Code?: Value; Type?: Value; constructor(properties: Icmp); } export interface NetworkAclEntryProperties { CidrBlock: Value; Egress?: Value; Icmp?: Icmp; Ipv6CidrBlock?: Value; NetworkAclId: Value; PortRange?: PortRange; Protocol: Value; RuleAction: Value; RuleNumber: Value; } export default class NetworkAclEntry extends ResourceBase { static PortRange: typeof PortRange; static Icmp: typeof Icmp; constructor(properties: NetworkAclEntryProperties); }