import type { MutationHook } from "@plasmicpkgs/commerce"; import type { LineItem, UpdateItemHook } from "../types/cart"; export declare type UpdateItemActionInput = T extends LineItem ? Partial : UpdateItemHook["actionInput"]; declare const _default: (input?: { item?: import("@plasmicpkgs/commerce/dist/types/cart").LineItem | undefined; wait?: number | undefined; } | undefined) => (input: Partial & { id: string; }) => import("@plasmicpkgs/commerce/dist/types/cart").Cart | Promise | null | undefined; export default _default; export declare const handler: MutationHook;