import { Ip } from '../../Ip';
/** AllocationPool */
export interface AllocationPool {
    /** Last IP for the pool (eg: 192.168.1.24) */
    end: Ip;
    /** First IP for the pool (eg: 192.168.1.12) */
    start: Ip;
}
//# sourceMappingURL=AllocationPool.d.ts.map