import * as React from "react"; import { Plugin } from "@webiny/plugins"; interface ConfigRenderProps { [key: string]: any; } interface Config { title: string; description: string; icon: React.ReactElement; render(props: ConfigRenderProps): React.ReactElement; } export declare class PbEditorPageSettingsPlugin extends Plugin { static readonly type: string; private readonly config; constructor(config: Config); get title(): string; get description(): string; get icon(): React.ReactElement; render(props: ConfigRenderProps): React.ReactElement>; } export {};