import { default as React } from 'react'; export type ChatLauncherVariant = 'icon' | 'morph' | 'beacon' | 'pulsar' | 'expand' | 'bar' | 'spark'; export type ChatLauncherAlign = 'bottomRight' | 'bottomLeft'; export interface ChatLauncherProps { variant?: ChatLauncherVariant; imageUrl?: string; text?: string; bgColor?: string; secBgColor?: string; fontColor?: string; align?: ChatLauncherAlign; spacingCorner?: string; spacingBottom?: string; showTooltip?: boolean; tooltipText?: string; icon?: React.ReactNode; className?: string; style?: React.CSSProperties; buttonOnMobile?: boolean; autoAnimate?: boolean; onClick: () => void; } export declare function ChatLauncher(props: ChatLauncherProps): React.JSX.Element; export default ChatLauncher;