import Joi from 'joi';
/** Configuration for a given rate card */
export interface RateCard {
    /** Externally facing id of the rate card. */
    Id: string;
    /** Currency of the rate card. This uses the three-digit currency code format. */
    Currency: string;
}
export declare const RateCardSchema: Joi.ObjectSchema<any>;
