import { Rate } from '..';
/** @description Basic structure for a response to get rates */
export interface GetRatesResponse {
    rates: Rate[];
}
