/** * What type the datapoints in a column will have. `double` is restricted to the range [-1E100, 1E100] */ export declare type DepthMeasurementValueTypeEnum = "string" | "double" | "long"; export declare const DepthMeasurementValueTypeEnum: { String: DepthMeasurementValueTypeEnum; Double: DepthMeasurementValueTypeEnum; Long: DepthMeasurementValueTypeEnum; };