import type { WebhookEndpoint } from '../../molecules/WebhookCard/WebhookCard.svelte'; interface WebhooksPageProps { title?: string; description?: string; webhooks?: WebhookEndpoint[]; query?: string; class?: string; oncreate?: () => void; ontest?: (id: string) => void; onedit?: (id: string) => void; ontoggle?: (id: string, enabled: boolean) => void; } declare const WebhooksPage: import("svelte").Component; type WebhooksPage = ReturnType; export default WebhooksPage;