import { HTMLAttributes, default as React } from 'react'; export interface HeroImageProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const HeroImage: React.ForwardRefExoticComponent>; export default HeroImage; //# sourceMappingURL=HeroImage.d.ts.map