import { Variant } from '../constants'; export type Props = { /** When true, shows the default icon (Info-circle for base, Exclamation-circle otherwise) with variant color and "lg" size. * Use icon prop to override the default icon. */ withDefaultIcon?: boolean; /** Custom icon element. Overrides withDefaultIcon when provided. */ icon?: React.ReactNode; title?: string; children: React.ReactNode; variant: Variant; }; declare function Banner({ withDefaultIcon, icon, title, children, variant, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export { Banner }; //# sourceMappingURL=Banner.component.d.ts.map