import { FC } from 'react'; import { MonitoringOptions } from '../../index.mjs'; import 'preact'; import '@preact/signals'; import 'bippy'; import 'preact/compat'; interface MonitoringProps { url?: string; apiKey: string; path?: string | null; route?: string | null; params?: Record; commit?: string | null; branch?: string | null; } type MonitoringWithoutRouteProps = Omit; declare const Monitoring: FC; declare const scanMonitoring: (options: MonitoringOptions) => void; declare const startMonitoring: () => void; export { Monitoring, type MonitoringProps, type MonitoringWithoutRouteProps, scanMonitoring, startMonitoring };