/**
 * Shell Card Management APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { DeliveryAddressUpdateReferences2 } from './deliveryAddressUpdateReferences2';
import { ErrorStatus } from './errorStatus';
export interface DeliveryAddressUpdateResponse {
    /** Request ID to which was passed on the API request. */
    requestId?: string;
    /** Service reference number for tracking. */
    serviceReference?: number;
    deliveryAddressUpdateReferences?: DeliveryAddressUpdateReferences2;
    error?: ErrorStatus;
}
export declare const deliveryAddressUpdateResponseSchema: Schema<DeliveryAddressUpdateResponse>;
