export interface SnapshotPaths { /** The per-template snapshot directory: /.metaobjects/snapshots/. */ dir: string; /** The committed fixture payload (author-owned input). */ payloadPath: string; /** The golden rendered output (tool-managed, byte-exact). */ snapPath: string; } export declare function snapshotPaths(cwd: string, templateName: string): SnapshotPaths; export declare function unifiedDiff(expected: string, actual: string): string; //# sourceMappingURL=snapshot.d.ts.map