/** * Sets the "only" mode flag * @param enabled Whether "only" mode is enabled */ declare function setOnlyMode(enabled: boolean): void; /** * Checks if we're in "only" mode * @returns True if in "only" mode, false otherwise */ declare function isOnlyMode(): boolean; /** * Enhances the test function with .only, .skip, and .todo methods * @param testFn Original test function * @returns Enhanced test function with filtering methods */ declare function enhanceTestFunction(testFn: any): any; /** * Enhances the describe function with .only, .skip, and .todo methods * @param describeFn Original describe function * @returns Enhanced describe function with filtering methods */ declare function enhanceDescribeFunction(describeFn: any): any; export declare const testFiltering: { setOnlyMode: typeof setOnlyMode; isOnlyMode: typeof isOnlyMode; enhanceTestFunction: typeof enhanceTestFunction; enhanceDescribeFunction: typeof enhanceDescribeFunction; }; export {};