import { Ip } from '../Ip';
/** DHCP Static Address */
export interface DHCPStaticAddress {
    /** IP address (e.g., 192.0.2.0) */
    IPAddress: Ip;
    /** The MAC address of the device */
    MACAddress: string;
    /** Name of the DHCP Static lease */
    name?: string;
    /** ID of the ongoing todo (NULL if none) */
    taskId?: number;
}
//# sourceMappingURL=DHCPStaticAddress.d.ts.map