import { ShippoService, ServiceOptions, ID, Params, App } from '../service';
interface AddressesParams extends Params {
    query: {
        validate?: string;
    };
}
export declare class ShippoAddresses extends ShippoService {
    constructor(options: ServiceOptions, app: App);
    _get(id: ID, params?: AddressesParams): Promise<any>;
}
export {};
