import React from "react"; import { TAlertColor } from "../Alert/types"; import * as S from "./styled"; export interface IBannerProps extends React.ComponentProps { color?: TAlertColor; noShadow?: boolean; children?: React.ReactNode; border?: boolean; /** @deprecated */ textList?: string[]; } declare const Banner: React.FC; export default Banner;