import type { CartLine, RenderExtensionPoint, CartLineChangeResult, CartLineChange } from '@shopify/checkout-ui-extensions'; /** * Returns the current line items for the checkout, and automatically re-renders * your component if line items are added, removed, or updated. */ export declare function useCartLines(): CartLine[]; /** * Returns a function to mutate the `lines` property of checkout. */ export declare function useApplyCartLinesChange(): (change: CartLineChange) => Promise; //# sourceMappingURL=cart-lines.d.ts.map