import { default as React } from 'react'; declare global { interface Window { watiWhatsAppButtonConfig?: Partial; updateWatiConfig?: (newConfig: Partial) => void; } } export interface WhatsAppButtonProps { position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'center'; offsetX?: number; offsetY?: number; backgroundColor?: string; textColor?: string; borderRadius?: number; padding?: string; boxShadow?: string; text?: string; icon?: React.ReactNode; width?: string; height?: string; border?: string; zIndex?: number; } declare const WhatsAppButton: React.FC; export default WhatsAppButton;