import React from "react"; export default function RibbonLauncher({ textColor, backgroundColor, launcherTitle, offerTitle, borderColor, iconType, launcherIcon, addVisibilityDelay, onClick, }: { textColor?: string | undefined; backgroundColor?: string | undefined; launcherTitle?: string | undefined; offerTitle?: string | undefined; borderColor?: string | undefined; iconType?: string | undefined; launcherIcon?: string | undefined; addVisibilityDelay?: boolean | undefined; onClick?: (() => void) | undefined; }): React.JSX.Element;