export interface PatternInstallArgs { fromDir: string; asName?: string | undefined; force?: boolean | undefined; } export interface PatternInstallResult { name: string; sourceDir: string; targetDir: string; status: "installed" | "skipped-exists" | "overwritten"; } export declare function patternInstallFlow(args: PatternInstallArgs): Promise; //# sourceMappingURL=pattern-install.d.ts.map