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