import { HTMLAttributes, default as React } from 'react'; export interface BannerTextContentProps extends HTMLAttributes { /** * The content for the h2 tag. */ title: string; /** * The content for the p tag below the h2. */ caption: string; /** * The href used at the link. */ link: string; /** * The label used at the link. */ linkText: string; /** * Specify if the link opens in a new tab. */ linkTargetBlank?: boolean; /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const BannerTextContent: React.ForwardRefExoticComponent>; export default BannerTextContent; //# sourceMappingURL=BannerTextContent.d.ts.map