import { type RunAddContractCommandOptions } from './cli-add-shared.js'; /** * Scaffold a standalone TypeScript wire contract and synchronize its JSON * Schema artifact without generating PHP route glue. * * @param options Command options for the standalone contract workflow. * @returns Resolved scaffold metadata for the created contract. */ export declare function runAddContractCommand({ contractName, cwd, typeName }: RunAddContractCommandOptions): Promise<{ contractSlug: string; projectDir: string; schemaFile: string; sourceTypeName: string; typesFile: string; }>;