import "./Banner.css"; import React from "react"; type BannerProps = { /** The content to display in the banner */ children: React.ReactNode; /** * Set the size of the banner (adjusts padding) * @default "md" */ size?: "sm" | "md"; /** * Set the status of the banner * @default "neutral" */ status?: "neutral" | "info" | "warning" | "error" | "success"; /** Set the title of the banner */ title?: string; }; export declare const Banner: ({ children, size, status, title, }: BannerProps) => React.JSX.Element; export default Banner; //# sourceMappingURL=Banner.d.ts.map