import { type ButtonProps } from "@vibe/button"; import { type FC } from "react"; export interface AlertBannerButtonProps extends ButtonProps { /** * If true, the button is displayed on a dark background. */ isDarkBackground?: boolean; } declare const AlertBannerButton: FC; export default AlertBannerButton;