import { JSX } from 'react';
export type BannerProps = {
    divProps?: JSX.IntrinsicElements['div'];
} & JSX.IntrinsicElements['section'];
export declare const Banner: ({ children, divProps, className, ...sectionProps }: BannerProps) => JSX.Element;
