import {Ice} from 'ice'; declare module './Ice.ns' { namespace Ice { /** * A version structure for the protocol version. */ class ProtocolVersion implements Ice.Struct { constructor(major?: number, minor?: number); major: number; minor: number; clone(): this; equals(other: this): boolean; hashCode(): number; } /** * A version structure for the encoding version. */ class EncodingVersion implements Ice.Struct { constructor(major?: number, minor?: number); major: number; minor: number; clone(): this; equals(other: this): boolean; hashCode(): number; } } } export {Ice} from './Ice.ns';