import { CartInput } from './storefront-api-types.js'; import { Cart } from './cart-types.js'; import type { StorefrontApiResponseOkPartial } from './storefront-api-response.types.js'; export declare function useCartFetch(): ({ query, variables, }: { query: string; variables: Record; }) => Promise>; export declare function useInstantCheckout(): { cart: Cart | undefined; checkoutUrl: Cart['checkoutUrl']; error: string | undefined; createInstantCheckout: (cartInput: CartInput) => Promise; };