import { IpBlock } from '../IpBlock';
/** Infos about the remote user */
export interface RemoteAccessUserInfos {
    /** IP from which the remote access will be allowed */
    ip: IpBlock;
    /** The public key authorized on the device (for SSH purpose) */
    publicKey?: string;
    /** The user that will access the device remotely */
    user: string;
}
//# sourceMappingURL=RemoteAccessUserInfos.d.ts.map