/** * The `line_item_application` describes what order line items this fulfillment applies * to. It can be `ALL` or `ENTRY_LIST` with a supplied list of fulfillment entries. */ export declare const FulfillmentFulfillmentLineItemApplication: { readonly All: "ALL"; readonly EntryList: "ENTRY_LIST"; }; export type FulfillmentFulfillmentLineItemApplication = (typeof FulfillmentFulfillmentLineItemApplication)[keyof typeof FulfillmentFulfillmentLineItemApplication];