import { FC } from "react"; import { BoxProps } from "../Box"; import { STATUS_VARIANT } from "../../types"; export interface BannerProps extends BoxProps { title?: string; variant?: STATUS_VARIANT; withIcon?: boolean; } export declare const Banner: FC;