import { default as React, ReactNode, HTMLAttributes, DetailedHTMLProps } from 'react'; export interface NewsletterHeaderProps extends DetailedHTMLProps, HTMLHeadElement> { /** * Icon for the section. */ icon?: ReactNode; /** * Title for the section. */ title: string; /** * A description for the section. */ description?: string; /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string; } declare const NewsletterHeader: React.ForwardRefExoticComponent & React.RefAttributes>; export default NewsletterHeader; //# sourceMappingURL=NewsletterHeader.d.ts.map