import type React from 'react'; import { type PageDisposer } from './react-mount.js'; type LogStatus = '' | 'ok' | 'error'; type TimeWindow = '24h' | '7d' | '30d' | 'all'; interface Filters { connectorId: string; status: LogStatus; timeWindow: TimeWindow; query: string; } export declare function buildWebhookLogSearchParams(filters: Filters, offset?: number): URLSearchParams; export declare function WebhookLogsContent(props?: { embedded?: boolean; }): React.JSX.Element; export declare function renderWebhookLogsPage(root: HTMLElement): PageDisposer; export {}; //# sourceMappingURL=webhook-logs-page.d.ts.map