/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime"; export namespace Components { interface LeadclickWidget { /** * The background color */ "bgcolor"?: string; /** * If the widget should have box shadow */ "box_shadow"?: boolean; /** * The call to action message */ "cta": string; /** * A custom z-index in case you need to override the default one */ "custom_z_index"?: number | string; /** * The Whatsapp url */ "fburl"?: string; /** * The font color */ "fontcolor"?: string; /** * The Instagram url */ "igurl"?: string; /** * The title to message for the integrations */ "instructions": string; /** * The amount of connected integrations */ "integrations": number; /** * Whether by leadsales.io copy will be displayed or not */ "ispremium"?: boolean; /** * The position where the widget will be placed */ "orientation": string; /** * Size of the widget */ "size": 's' | 'm' | 'l'; /** * The name of the visible integrations */ "visible_integrations": string; /** * The Whatsapp url */ "waurl"?: string; } } declare global { interface HTMLLeadclickWidgetElement extends Components.LeadclickWidget, HTMLStencilElement { } var HTMLLeadclickWidgetElement: { prototype: HTMLLeadclickWidgetElement; new (): HTMLLeadclickWidgetElement; }; interface HTMLElementTagNameMap { "leadclick-widget": HTMLLeadclickWidgetElement; } } declare namespace LocalJSX { interface LeadclickWidget { /** * The background color */ "bgcolor"?: string; /** * If the widget should have box shadow */ "box_shadow"?: boolean; /** * The call to action message */ "cta"?: string; /** * A custom z-index in case you need to override the default one */ "custom_z_index"?: number | string; /** * The Whatsapp url */ "fburl"?: string; /** * The font color */ "fontcolor"?: string; /** * The Instagram url */ "igurl"?: string; /** * The title to message for the integrations */ "instructions"?: string; /** * The amount of connected integrations */ "integrations"?: number; /** * Whether by leadsales.io copy will be displayed or not */ "ispremium"?: boolean; /** * The position where the widget will be placed */ "orientation"?: string; /** * Size of the widget */ "size"?: 's' | 'm' | 'l'; /** * The name of the visible integrations */ "visible_integrations"?: string; /** * The Whatsapp url */ "waurl"?: string; } interface IntrinsicElements { "leadclick-widget": LeadclickWidget; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "leadclick-widget": LocalJSX.LeadclickWidget & JSXBase.HTMLAttributes; } } }