export type WebhookStatus = 'active' | 'disabled' | 'failing'; export interface WebhookEndpoint { id: string; url: string; description?: string; events?: string[]; status?: WebhookStatus; secretHint?: string; lastDeliveryAt?: Date | string | number; successRate?: number; } interface WebhookCardProps { webhook: WebhookEndpoint; class?: string; ontest?: (id: string) => void; onedit?: (id: string) => void; ontoggle?: (id: string, enabled: boolean) => void; } declare const WebhookCard: import("svelte").Component; type WebhookCard = ReturnType; export default WebhookCard;