/** * Shared Test Helpers * * Common utilities for tests across all packages */ /** * Create a unique temporary test directory * * @returns Path to the created temporary directory * * @example * ```typescript * let testDir: string; * beforeEach(async () => { * testDir = await createTempTestDir(); * }); * ``` */ export declare function createTempTestDir(): Promise; //# sourceMappingURL=test-helpers.d.ts.map