export declare const afterEach: any, beforeEach: any, describe: any, expect: any, it: any, test: any, vi: { fn: any; restoreAllMocks: () => void; } | { fn: (implementation?: (...args: TArgs) => TResult) => ((...args: TArgs) => TResult) & { mockClear: () => void; mockRejectedValueOnce: (value: unknown) => ((...args: TArgs) => TResult) & /*elided*/ any; mockResolvedValueOnce: (value: Awaited) => ((...args: TArgs) => TResult) & /*elided*/ any; mockImplementation: (implementation: (...args: TArgs) => TResult) => ((...args: TArgs) => TResult) & /*elided*/ any; }; restoreAllMocks: () => void; };