import { default as React, ReactNode } from 'react'; export type BannerVariant = 'brand' | 'neutral'; export type BannerProps = { /** * The visual style of the banner * @default brand */ variant?: BannerVariant; /** * Title of the Banner */ title: ReactNode; /** * Illustration on the left side of the Banner. * Illustration will be centered vertically with margin on both left and right */ illustration?: ReactNode; /** * Content of the Banner */ children: ReactNode; /** * className for the element */ className?: string; /** * Action buttons to be displayed in the Banner */ actions: ReactNode; }; /** * Callout to prompt the user for an action */ export declare const Banner: ({ variant, title, children, className, illustration, actions, }: BannerProps) => React.JSX.Element; //# sourceMappingURL=Banner.d.ts.map