/**
 * CWMS Data API
 * CWMS REST API for Data Retrieval
 *
 * The version of the OpenAPI document: 2.4.0-2026.3.16
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { TimeSeriesProfileParser } from './TimeSeriesProfileParser';
/**
 *
 * @export
 * @interface TimeSeriesProfileParserColumnar
 */
export interface TimeSeriesProfileParserColumnar extends TimeSeriesProfileParser {
    /**
     *
     * @type {number}
     * @memberof TimeSeriesProfileParserColumnar
     */
    timeStartColumn?: number;
    /**
     *
     * @type {number}
     * @memberof TimeSeriesProfileParserColumnar
     */
    timeEndColumn?: number;
}
export declare function TimeSeriesProfileParserColumnarFromJSON(json: any): TimeSeriesProfileParserColumnar;
export declare function TimeSeriesProfileParserColumnarFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeSeriesProfileParserColumnar;
export declare function TimeSeriesProfileParserColumnarToJSON(value?: TimeSeriesProfileParserColumnar | null): any;
