import React from "react"; export type FloatingBannerProps = { title?: string; enableHeading?: boolean; subtitle?: string; icon?: string; description?: React.ReactNode; cta?: any | null; disclaimer?: React.ReactNode; background?: "green" | "navy" | "white" | "purple" | "blue" | "yellow"; color?: "dark" | "light"; maxWidth?: boolean; }; export type ThemeKey = | "blue" | "green" | "yellow" | "purple" | "white" | "navy";