import { BaseRequest } from './base-request';
/** @description Basic structure for a request to get a single service point by id */
export declare class GetServicePointRequest extends BaseRequest {
    /** @description The service point id to get */
    service_point_id: string;
    /** @description The two character country code of the service point. The codes are specified by ISO 3166-1 alpha-2 */
    country_code: string;
}
