import { HTMLAttributes, default as React } from 'react'; import { PriceDefinition } from '../../typings/PriceDefinition'; export interface GiftContentProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Specifies the product's name. */ productName: string; /** * Specifies product's prices. */ price: PriceDefinition; /** * Badge's label */ badgeLabel?: string; /** * Additional message in the title */ titleMessage?: string; } declare const GiftContent: React.ForwardRefExoticComponent>; export default GiftContent; //# sourceMappingURL=GiftContent.d.ts.map