import React from "react"; type InlineCartOfferInfoTextProps = { inlineCartOfferInfoText: string; inlineCartOfferInfoRedirectLink?: string; themeColor?: string; tooltipText?: string; themeTextColor?: string; }; export default function InlineCartOfferInfoText({ inlineCartOfferInfoText, inlineCartOfferInfoRedirectLink, themeColor, tooltipText, themeTextColor, }: InlineCartOfferInfoTextProps): React.JSX.Element; export {};