export interface TestResults { passed: number; skipped: number; failed: number; hasFailed: () => boolean; } type ReducerOptions = 'INCREMENT_PASSED' | 'INCREMENT_SKIPPED' | 'INCREMENT_FAILED'; export type TestReducer = (action: ReducerOptions) => void; export declare function useTestResults(): [TestResults, TestReducer]; export {};