import * as React from 'react'; import { VariantProps } from 'class-variance-authority'; export declare const BannerVariant: { info: string; warning: string; error: string; }; declare const bannerVariants: (props?: ({ variant?: string | number | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; export interface BannerProps extends React.HTMLAttributes, VariantProps { title: string; message: string; } declare const Banner: ({ variant, title, message, className, children, ...props }: BannerProps) => import("react/jsx-runtime").JSX.Element; export { Banner };