import type { ApiClient } from "../client.js";
export declare function getAllPlugins(client: ApiClient): Promise<any>;
export declare function getPlugin(client: ApiClient, pluginName: string): Promise<any>;
export declare function getPluginDetails(client: ApiClient, plugin: any): Promise<any>;
export declare function updatePlugin(client: ApiClient, args: {
    plugin: any;
    body: string;
}): Promise<any>;
export declare function createPlugin(client: ApiClient, pluginName: string): Promise<any>;
