export declare const SSHErrorCodeConst_Name = "SSHErrorCodeConst";
export declare const SSHErrorCodeConstType_Name = "SSHErrorCodeConstType";
export declare const SSHErrorCodeConst: {
    readonly ECONNREFUSED: "ECONNREFUSED";
    readonly ETIMEDOUT: "ETIMEDOUT";
    readonly EHOSTUNREACH: "EHOSTUNREACH";
    readonly EAUTH: "EAUTH";
    readonly ENOENT: "ENOENT";
    readonly EACCES: "EACCES";
    readonly NO_SUCH_FILE: "NO_SUCH_FILE";
    readonly PERMISSION_DENIED: "PERMISSION_DENIED";
    readonly UNKNOWN: "UNKNOWN";
};
export type SSHErrorCodeConstType = (typeof SSHErrorCodeConst)[keyof typeof SSHErrorCodeConst];
