Just to help anyone else who runs into this problem, here is a complete declaration to get the original example posted by sean working:
declare module "cesium" {
  class Texture {
    constructor(obj: any);
  }
  class Sampler {
    constructor(obj: any);
  }
  enum TextureWrap {
    CLAMP_TO_EDGE,
  }
}