import { FamilyEnum } from './response/FamilyEnum';
import { Ip } from '../../../Ip';
/** IP ACL */
export interface Response {
    /** Family of IP ACL */
    family: FamilyEnum;
    /** ID of IP ACL */
    id: number;
    /** IP address (e.g., 192.0.2.0) */
    netmask: Ip;
    /** IP address (e.g., 192.0.2.0) */
    network: Ip;
}
//# sourceMappingURL=Response.d.ts.map