import React from "react"; export interface Props { name?: string; title: string; subtitle?: string; hyperLink?: { url: string; text: string; }; button?: { id: string; onClick: () => void; text: string; classes?: string; dataTestId: string; }; wide?: boolean; variants?: "dark" | string; dataTestId?: string; backgroundImgURLs?: { extraSmallImgURL?: string; smallImgURL?: string; mediumImgURL?: string; largeImgURL?: string; }; } export declare const getGraphic: (screenSize: string, backgroundImgURL?: Props["backgroundImgURLs"]) => string | null; export declare const HeroPanel: (props: Props) => React.JSX.Element;