export declare enum Shading {
  FLAT = 0,
  GOURAUD = 1,
  PHONG = 2,
}

export declare enum Representation {
  POINTS = 0,
  WIREFRAME = 1,
  SURFACE = 2,
}

export declare enum Interpolation {
  FLAT = 0,
  GOURAUD = 1,
  PHONG = 2,
}

declare const _default: {
  Shading: typeof Shading;
  Representation: typeof Representation;
  Interpolation: typeof Interpolation;
};
export default _default;
