import { default as React, HTMLAttributes, DetailedHTMLProps } from 'react'; export interface NewsletterContentProps extends DetailedHTMLProps, HTMLDivElement> { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string; } declare const NewsletterContent: React.ForwardRefExoticComponent & React.RefAttributes>; export default NewsletterContent; //# sourceMappingURL=NewsletterContent.d.ts.map