import { HTMLAttributes, ReactNode, default as React } from 'react';
export interface HeroHeaderProps extends HTMLAttributes {
/**
* Content for the h1 tag.
*/
title: string;
/**
* Content for the p tag.
*/
subtitle: string;
/**
* Icon component for additional customization.
*/
icon?: ReactNode;
/**
* Specifies the URL the action button goes to.
*/
link?: string;
/**
* Specifies the action button's content.
*/
linkText?: string;
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string;
/**
* Specify if the link opens in a new tab.
*/
linkTargetBlank?: boolean;
}
declare const HeroHeader: React.ForwardRefExoticComponent>;
export default HeroHeader;
//# sourceMappingURL=HeroHeader.d.ts.map