/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { DeliveryOption } from './deliveryOption';
import { PickupOption } from './pickupOption';
import { Warning } from './warning';
export interface CheckoutResponse {
    /** Array of delivery options */
    deliveryOptions?: DeliveryOption[];
    /** Array of possible pickup options */
    pickupOptions?: PickupOption[];
    /** An array of warnings */
    warnings?: Warning[];
}
export declare const checkoutResponseSchema: Schema<CheckoutResponse>;
