import type { Linter } from 'eslint'; import type { OptionsOverrides } from '../types'; /** * Test configuration options */ export interface TestOptions extends OptionsOverrides { /** * Whether running in editor environment */ isInEditor?: boolean; } /** * Test configuration */ export declare function test(options?: TestOptions): Promise; //# sourceMappingURL=test.d.ts.map