import React from "react";
export interface HeroProps {
    className?: string;
    title?: string;
    description?: string;
    desktopImg?: string;
    mobileImg?: string;
    href?: string;
    leftLabel?: string;
    rightLabel?: string;
    leftLink?: string;
    rightLink?: string;
    aLabel?: string;
}
export declare const Hero: React.FC<HeroProps>;
