import { DekApi, DekPlugin, DekPluginConfig } from '@appkit/dek-plugin'; declare class Plugin implements DekPlugin { readonly config: DekPluginConfig; constructor(config: DekPluginConfig); load(api: DekApi): Promise; unload(): Promise; get components(): { key: string; element: (props: any) => import("react/jsx-runtime").JSX.Element; }[]; get screens(): { path: string; element: (props: any) => import("react/jsx-runtime").JSX.Element; }[]; } export default Plugin;