export declare function PluginInfo(...args: any[]): {
    pluginObjectName: string;
    componentName: string;
    signalTable: object;
    componentHandle: LuaComponent;
};
export type PluginInfo = ReturnType<typeof PluginInfo>;
