import { SharedAPI } from '../abstractions'; import { Bento } from '../Bento'; import { Plugin } from './interfaces'; export declare class PluginAPI extends SharedAPI { /** * The plugin this API object belongs to */ private readonly plugin; constructor(bento: Bento, plugin: Plugin); /** * Plugins are allowed to have direct access to bento * * @returns bento instance */ getBento(): Bento; }