export { detect } from "./detect"; export * from "./logger"; export { matches } from "./match"; export * from "./plugin"; export { create } from "./spy-factory"; export { inferPath, inferType } from "./util"; import { hide, tag } from "./operators"; import { CyclePlugin, DebugPlugin, GraphPlugin, LetPlugin, LogPlugin, PausePlugin, SnapshotPlugin, StackTracePlugin, StatsPlugin } from "./plugin"; export declare const plugins: { CyclePlugin: typeof CyclePlugin; DebugPlugin: typeof DebugPlugin; GraphPlugin: typeof GraphPlugin; LetPlugin: typeof LetPlugin; LogPlugin: typeof LogPlugin; PausePlugin: typeof PausePlugin; SnapshotPlugin: typeof SnapshotPlugin; StackTracePlugin: typeof StackTracePlugin; StatsPlugin: typeof StatsPlugin; }; export declare const operators: { hide: typeof hide; tag: typeof tag; };