/// import { EventEmitter } from "events"; /** * @uiName RC Referral Lead Submit Button */ export declare class LeadSubmit { /** * Border color of the button * * @uiName Button Border Color * @uiWidget color */ bordercolor: string; /** * Border radius on the button * * @uiName Button Border Radius */ borderradius: string; /** * @uiName Button Font Size */ fontsize: string; /** * @uiName Button Text Color * @uiWidget color */ textcolor: string; /** * @uiName Button Background Color * @uiWidget color */ backgroundcolor: string; /** * Text inside the button * * @uiName Button Text */ text: string; /** * Padding on the Y axis of button * * @uiName Padding Y */ paddingy: string; /** * Padding on the X axis of button * * @uiName Padding X */ paddingx: string; showIFrame: EventEmitter; clickHandler: () => void; render(): any; }