/**
 * Account and Transaction API SpecificationLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { StatementRateTypeEnum } from './statementRateTypeEnum';
/** Set of elements used to provide details of a generic rate related to the statement resource. */
export interface StatementRate {
    /** Rate associated with the statement rate type. */
    rate: string;
    /** Statement rate type, in a coded form. */
    type: StatementRateTypeEnum;
}
export declare const statementRateSchema: Schema<StatementRate>;
