import { ShippoService, ServiceOptions, ID, Params, App } from '../service';
interface RatesParams extends Params {
    query: {
        shipment: ID;
        rates: string;
    };
}
export declare class ShippoRates extends ShippoService {
    constructor(options: ServiceOptions, app: App);
    _find(params?: RatesParams): any;
}
export {};
