import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CampaignOfferTargetPageTypeEnum, CartV2 } from "../types"; export declare const getCartById: (input: GetCartByIdQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type GetCartByIdQueryParams = { getCompletedCart?: boolean | null; id?: string | null; paymentGatewayId?: string | null; targetPageType?: CampaignOfferTargetPageTypeEnum | null; };