import { AxiosInstance } from "axios"; import { Webhook, CreateWebhookData } from "./types"; export declare class NexaWebhooks { private client; constructor(client: AxiosInstance); /** * Obtiene la lista de webhooks configurados */ list(): Promise; /** * Crea un nuevo webhook */ create(data: CreateWebhookData): Promise; /** * Actualiza un webhook existente */ update(id: string, data: Partial): Promise; /** * Elimina un webhook */ delete(id: string): Promise; /** * Obtiene un webhook por su ID */ get(id: string): Promise; }