import { Identifier } from '../identifier';
import { FulfillmentPlanItems } from './fulfillment-plan-items';
import { RawExternalSource } from './raw-external-source';
/** @description This model contains information about the fulfillment plan. */
export declare class FulfillmentPlanDetails {
    /** @description A list of identifiers for the sales order. */
    external_sales_order_identifiers?: Identifier[];
    /** @description Information about the fulfillment plan item. */
    items?: FulfillmentPlanItems[];
    /** @description This model represents a raw external source of information */
    raw_external_source?: RawExternalSource;
}
