import React from "react"; import { UIElement, UIElementConfig } from "@webiny/app-admin/ui/UIElement"; import { UIView } from "@webiny/app-admin/ui/UIView"; export interface PageSettingsTabElementConfig extends UIElementConfig { id: string; title: string; description: string; icon: React.ReactElement; view: UIView; } export declare class PageSettingsTabElement extends UIElement { constructor(id: string, config: PageSettingsTabElementConfig); setTitle(title: string): void; setDescription(description: string): void; setIcon(icon: React.ReactElement): void; setView(view: UIView): void; }