//#region extensions/crypto/src/commands/webhooks-command.d.ts /** * Webhooks command — manage inbound webhook routes. * * /webhooks — List all webhook routes and server status * /webhooks info — Show details for a route * /webhooks enable — Enable a route * /webhooks disable — Disable a route * /webhooks delete — Delete a route */ declare const webhooksCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx?: any) => Promise<{ text: string; }>; }; //#endregion export { webhooksCommand }; //# sourceMappingURL=webhooks-command.d.mts.map