import { Message } from "whatsapp-web.js";
import { CommandsRegistryService } from "./commands-registry.service";
export declare class CommandsService {
    private readonly registry;
    constructor(registry: CommandsRegistryService);
    handle(message: Message, clientName: string, prefix: string): Promise<void>;
}
