/**
 * Helper function to execute a function within a specific working directory
 * and ensure the original directory is always restored
 */
export declare function withWorkingDirectory<T>(targetDir: string, fn: () => Promise<T>): Promise<T>;
