export interface ContentLocalArgs { target?: string; open: boolean; port: number; profile?: string; dryRun: boolean; json: boolean; help: boolean; } export interface ContentLocalLaunchPlan { workspaceRoot: string; manifestPath: string; rootPath: string; filePath?: string; connectionId: string; url: string; command: string; args: string[]; env: Record; manifest: Record; } export declare function parseContentLocalArgs(argv: string[]): ContentLocalArgs; export declare function findContentTemplateDir(cwd?: string): string; export declare function prepareContentLocalLaunch(options: { target: string; cwd?: string; port?: number; profile?: string; dryRun?: boolean; }): Promise; export declare function runContentLocal(argv: string[]): Promise; //# sourceMappingURL=content-local.d.ts.map