import React from "react"; export interface HeroBannerProps { className?: string; title?: string; description?: string; imageUrl?: string; } declare const HeroBnner: ({ className, title, description, imageUrl, }: HeroBannerProps) => React.JSX.Element; export default HeroBnner;