export interface IRespuestaObtenerCotizacion {
    cotizaciones: Cotizacion[];
}
export interface Cotizacion {
    fecha: string;
    moneda: number;
    nombre: string;
    codigoIso: string;
    emisor: string;
    tipoCambioCompra: number;
    tipoCambioVenta: number;
}
//# sourceMappingURL=IRespuestaObtenerCotizacion.d.ts.map