import { FxError, Result } from "@microsoft/teamsfx-api"; import { ExportInputs } from "./types"; export declare const OPEN_PLUGIN_EXPORT_SOURCE = "OpenPluginExport"; export interface ExportResult { /** Absolute path to the generated Open Plugin directory. */ outputPath: string; warnings: string[]; } /** * Export an ATK project (folder containing appPackage/manifest.json plus the * usual agentSkills/agentConnectors layout) into an Open Plugin Spec v1.0 * directory. The output is structured so that `atk import openplugin --path * ` reconstructs an equivalent ATK project; fields with no native * Open Plugin equivalent are preserved verbatim under the * `x-microsoft-365-agents-toolkit` extension key in plugin.json. */ export declare function exportOpenPlugin(inputs: ExportInputs): Promise>; //# sourceMappingURL=exporter.d.ts.map