import { Ip } from '../Ip';
import { AllowedIPsActionEnum } from './AllowedIPsActionEnum';
/** Smpp allowed IPs */
export interface AllowedIPs {
    /** Action to perform on the provided IPs */
    action: AllowedIPsActionEnum;
    /** List of IPs to add or remove */
    ips: Ip[];
}
//# sourceMappingURL=AllowedIPs.d.ts.map