/**
 * 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 TimeSeriesProfileParserIndexed
 */
export interface TimeSeriesProfileParserIndexed extends TimeSeriesProfileParser {
    /**
     *
     * @type {string}
     * @memberof TimeSeriesProfileParserIndexed
     */
    fieldDelimiter: string;
    /**
     *
     * @type {number}
     * @memberof TimeSeriesProfileParserIndexed
     */
    timeField: number;
}
export declare function TimeSeriesProfileParserIndexedFromJSON(json: any): TimeSeriesProfileParserIndexed;
export declare function TimeSeriesProfileParserIndexedFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeSeriesProfileParserIndexed;
export declare function TimeSeriesProfileParserIndexedToJSON(value?: TimeSeriesProfileParserIndexed | null): any;
