import React from "react"; import "./styles"; export default function LoyaltyLauncher({ launcherType, textColor, backgroundColor, position, yOffsetValue, launcherTitle, offerTitle, borderColor, iconType, launcherIcon, addVisibilityDelay, addAttentionWaves, customCss, enableCustomCss, onClick }: { launcherType?: string; textColor?: string; backgroundColor?: string; position?: string; yOffsetValue?: string | number; launcherTitle?: string; offerTitle?: string; borderColor?: string; iconType?: string; launcherIcon?: string; addVisibilityDelay?: boolean; addAttentionWaves?: boolean; customCss?: string; enableCustomCss?: boolean; onClick?: () => void; }): React.JSX.Element;