/** * @uiName Global Container * @slots [{"name":"main", "title":"Main"},{"name":"sidebar", "title":"Sidebar"}] */ export declare class GlobalContainer { /** * Configure the background color. * * @uiName Background Color * @uiWidget color */ background: string; /** * Configure the color of the loading state. * * @uiName Loading Color * @uiWidget color */ loadingcolor: string; /** * Font family used inside the container. * * @uiName Font Family */ fontfamily: string; /** * Maximum width on the container. * * @uiName Max Width */ maxwidth: string; /** * Show and hide the powered by SaaSquatch link. * * @uiName Powered By */ poweredby: boolean; /** * Configure the source of the iframe. * * @uiName Iframe Source */ iframesrc: string; showIFrame: boolean; referralcode: string; showIFrameHandler(): void; handleHideIFrame(e: Event): void; componentWillLoad(): Promise; render(): any; }