import type { Call, Options } from './type'; export interface TestOptions extends Options { highlight?: boolean; useBefore?: B; useAfter?: A; } export interface TestParams extends TestOptions { name: string; call: Call; } export declare function test(name: string, call: Call, timeout?: TestOptions | number): void; export declare function test(params: TestParams): void;