import { default as React, HTMLAttributes } from 'react';
export interface CartItemSummaryProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest).
*/
testId?: string;
/**
* Specifies the product's title.
*/
title: string;
/**
* Array of the product's chosen variations.
*/
activeVariations?: Array<{
label: string;
option: string;
}>;
}
declare const CartItemSummary: React.ForwardRefExoticComponent>;
export default CartItemSummary;
//# sourceMappingURL=CartItemSummary.d.ts.map