import React from "react"; import { ImgProps } from "../util/Img"; import { ButtonProps } from "../util/Button"; import { WithTheme } from "../types"; export declare type DoubleBtn = { btnLeft?: { buttonText: string; } & Pick; btnRight?: { buttonText: string; } & Pick; }; export declare type HeroOrientation = "right" | "left" | "middle"; export declare type HeroProps = WithTheme<{ title: string | React.ReactNode; description: string; orientation?: HeroOrientation; }> & ImgProps & DoubleBtn; export declare function Hero({ title, description, imgSrc, imgNode, btnLeft, btnRight, imgAlt, orientation, ...props }: HeroProps): JSX.Element;