export interface PatternUninstallArgs { name: string; force?: boolean | undefined; } export interface PatternUninstallResult { name: string; removed: boolean; reason?: string | undefined; affectedVaults: string[]; } export declare function patternUninstallFlow(args: PatternUninstallArgs): Promise; //# sourceMappingURL=pattern-uninstall.d.ts.map