export declare const DEFAULT_PLUGIN_TEMPLATE_PACKAGE = "@botmux-ai/plugin-template"; export declare const OFFICIAL_PLUGIN_SCOPE = "@botmux-ai"; export declare const OFFICIAL_PLUGIN_PACKAGE_PREFIX = "@botmux-ai/plugin-"; export declare const OFFICIAL_PLUGIN_REPO_PREFIX = "botmux-plugin-"; export interface PluginInitOptions { cwd?: string; templateSource?: string; skipSelfTest?: boolean; } export interface PluginInitResult { pluginId: string; packageName: string; repoName: string; displayName: string; targetDir: string; commandPrefix: string; templateSource: string; selfTestRan: boolean; } export declare function normalizePluginInitName(raw: string): Pick; export declare function initPlugin(rawName: string, options?: PluginInitOptions): PluginInitResult; export declare function resolveOfficialPluginPackageSpec(value: string): string; //# sourceMappingURL=init.d.ts.map