/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { StatementDateTimeTypeEnum } from './statementDateTimeTypeEnum';
/** Set of elements used to provide details of a generic date time for the statement resource. */
export interface StatementDateTime {
    /**
     * Date and time associated with the date time type.
     * All dates in the JSON payloads are represented in ISO 8601 date-time format.
     * All date-time fields in responses must include the timezone. An example is below:
     * 2017-04-05T10:43:07+00:00
     */
    dateTime: string;
    /** Date time type, in a coded form. */
    type: StatementDateTimeTypeEnum;
}
export declare const statementDateTimeSchema: Schema<StatementDateTime>;
