import { FC } from "react";
export interface BannerProps {
    label: string;
    href: string;
    imageUrl: string;
}
export declare const Banner: FC<BannerProps>;
export default Banner;
