/**
 * Test environment detection and configuration
 */
/**
 * Check if we're running in test mode
 */
export declare function isTestMode(): boolean;
/**
 * Get the current test seed for deterministic key generation
 */
export declare function getCurrentTestSeed(testName?: string): string;
/**
 * Ensure we're in test mode, throw if not
 */
export declare function ensureTestMode(): void;
/**
 * Configure test environment
 */
export declare function configureTestEnvironment(options?: {
    seed?: string;
    skipKTACalls?: boolean;
}): void;
/**
 * Check if KTA calls should be skipped
 */
export declare function shouldSkipKTACalls(): boolean;
