import { CurrentCartServiceConfig } from '../services/current-cart-service.js'; /** * Props for the Root component */ export interface RootProps { /** Child components that will have access to the cart context */ children: React.ReactNode; /** Configuration for the current cart service */ currentCartServiceConfig: CurrentCartServiceConfig; } export declare const Root: { ({ children, currentCartServiceConfig }: RootProps): import("react/jsx-runtime").JSX.Element; displayName: string; };