import { type RunAddAiFeatureCommandOptions } from './cli-add-shared.js'; /** * Scaffold a workspace-level server-only AI feature endpoint and synchronize * its typed REST plus AI-schema artifacts. * * @param options Command options for the AI feature scaffold workflow. * @returns Resolved scaffold metadata for the created AI feature. */ export declare function runAddAiFeatureCommand({ aiFeatureName, cwd, namespace }: RunAddAiFeatureCommandOptions): Promise<{ aiFeatureSlug: string; namespace: string; projectDir: string; warnings: string[]; }>;