export interface PatternListEntry { id: string; name: string; version: string; dir: string; verbCount: number; linkedToVault: boolean | null; } export interface PatternListResult { patternsDir: string; entries: PatternListEntry[]; } export declare function patternListFlow(vaultName?: string): Promise; //# sourceMappingURL=pattern-list.d.ts.map