import * as React from "react";
export interface BannerProps {
    title: string;
    heading: string;
    image: string;
}
export declare function Banner({ title, heading, image }: BannerProps): React.JSX.Element;
