import { FC, PropsWithChildren } from 'react'; import { VisualSizesEnum } from '../../helpers/fontHelpers'; export type InlineBannerTypes = 'info' | 'success' | 'error' | 'warning'; interface InlineBannerProps { /** Type of banner */ type: InlineBannerTypes; /** Size of the banner */ size: VisualSizesEnum; /** Title to render for the banner. */ title: string; onClose?: () => void; } export declare const InlineBanner: FC>; export {};