Repository URL to install this package:
|
Version:
2.1.7 ▾
|
import React from 'react';
import { defaultRenderHeader, defaultRenderItem } from './renderProps';
import { CheckoutCartBundleProps } from './typings';
declare class CheckoutCartBundle extends React.PureComponent<CheckoutCartBundleProps> {
static defaultProps: {
className: string;
headerLabel: string;
renderHeader: typeof defaultRenderHeader;
renderItem: typeof defaultRenderItem;
};
render(): JSX.Element;
}
export { CheckoutCartBundle };
export default CheckoutCartBundle;