import { PropsWithChildren } from 'react';
import type { ShoppingCartManagerOptions, ShoppingCartManagerClient } from './types';
export default function ShoppingCartProvider({ managerClient, options, children, }: PropsWithChildren<{
    managerClient: ShoppingCartManagerClient;
    options?: ShoppingCartManagerOptions;
}>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=shopping-cart-provider.d.ts.map