import type { Bento } from '../../Bento';
import type { Component } from '../interfaces/Component';
import { EntityAPI } from './EntityAPI';
/**
 * The gateway of a component to the rest of the application.
 * Each component gets one if loaded.
 */
export declare class ComponentAPI extends EntityAPI {
    constructor(bento: Bento, component: Component);
}
