import { default as React, HTMLAttributes, DetailedHTMLProps } from 'react'; type ColorVariant = 'main' | 'light' | 'accent'; export interface NewsletterProps extends DetailedHTMLProps, HTMLDivElement> { /** * Enables the card Variant. */ card: boolean; /** * Specifies the component's color variant combination. */ colorVariant?: ColorVariant; /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string; } declare const Newsletter: React.ForwardRefExoticComponent & React.RefAttributes>; export default Newsletter; //# sourceMappingURL=Newsletter.d.ts.map