import { Ipv4 } from '../Ipv4';
import { TwoFAWhitelistStateEnum } from './TwoFAWhitelistStateEnum';
/** Two factor authentication whitelisted network */
export interface TwoFAWhitelist {
    /** IP netmask (CIDR notation) of the remote service */
    cidrNetmask: number;
    /** Description of the trusted IP */
    description: string;
    /** Id of the trusted IP */
    id: number;
    /** IP address of the remote service */
    ip: Ipv4;
    /** State of the whitelist */
    state: TwoFAWhitelistStateEnum;
}
//# sourceMappingURL=TwoFAWhitelist.d.ts.map