import { Ipv4Block } from '../../../Ipv4Block';
/** Service Wiregard peer details */
export interface Peer {
    /** Wireguard peer status */
    active: boolean;
    /** Wireguard peer description */
    description: string;
    /** Wireguard peer name */
    name: string;
    /** Wireguard peer id */
    peerId: string;
    /** Wireguard peer private IP */
    privateIpv4: Ipv4Block;
    /** Wireguard peer public key */
    publicKey: string;
}
//# sourceMappingURL=Peer.d.ts.map