/** @description Basic structure for a tracking service */
export declare class Service {
    /** @description The code specific to a shipping provider service. */
    code?: string;
    /** @description The name of this shipping provider service. */
    name?: string;
}
