import { TapPlugin, TestBase } from '@tapjs/core'; import { Clock } from 'clock-mock'; export * from 'clock-mock'; /** * plugin implementation providing the `.clock` getter */ export declare class ClockPlugin { #private; constructor(t: TestBase); /** * The mock clock implementation, available at `t.clock` when this * plugin has been loaded. * * If the clock is entered, it will be automatically exited on test * teardown, if the `@tapjs/after` plugin is loaded. */ get clock(): Clock; } export declare const plugin: TapPlugin; //# sourceMappingURL=index.d.ts.map