import { AgentPluginRegistor } from '.';
/**
 * Class AgentPlugin
 * 提供获取插件数据、检测客户端插件等功能
 */
interface AgentPluginDetails {
}
export default class AgentPlugin {
    code: string;
    description: string;
    loaded: boolean;
    functions: AgentPluginRegistor;
    constructor(code: any, functions?: AgentPluginRegistor, initalData?: AgentPluginDetails);
    fetchData(): void;
    checkFunctions(): void;
}
export {};
