export declare class Leadclick { /** * The call to action message */ cta: string; /** * The title to message for the integrations */ instructions: string; /** * The Whatsapp url */ waurl?: string; /** * The Instagram url */ igurl?: string; /** * The Whatsapp url */ fburl?: string; /** * The background color */ bgcolor?: string; /** * The font color */ fontcolor?: string; /** * The amount of connected integrations */ integrations: number; /** * The name of the visible integrations */ visible_integrations: string; /** * The position where the widget will be placed */ orientation: string; /** * Whether by leadsales.io copy will be displayed or not */ ispremium?: boolean; /** * Size of the widget */ size: 's' | 'm' | 'l'; /** * A custom z-index in case you need to override the default one */ custom_z_index?: number | string; /** * If the widget should have box shadow */ box_shadow?: boolean; showOptions: boolean; private openWhatsApp; private openFacebook; private openInstragram; private clickHandler; readonly whatsappSVG = "https://d3sfoqdi5f3194.cloudfront.net/whatsapp-icon.svg"; readonly facebookSVG = "https://d3sfoqdi5f3194.cloudfront.net/messenger-icon.svg"; readonly instagramSVG = "https://d3sfoqdi5f3194.cloudfront.net/instagram-icon.svg"; readonly scales: { s: number; m: number; l: number; }; render(): any; }