/** * Simple in-memory counter utility. * Used by the `/count` slash command for basic increment/decrement/reset operations. */ /** * Increment the counter by 1. */ export declare function incrementCounter(): void; /** * Decrement the counter by 1. */ export declare function decrementCounter(): void; /** * Reset the counter to 0. */ export declare function resetCounter(): void; /** * Get the current counter value. * @returns The current count */ export declare function getCounter(): number;