import { ComponentAPI } from '@ayanaware/bento';
import { AnyCommandContext } from '../../commands/CommandContext';
import { CommandManager } from '../../commands/CommandManager';
import { CommandDefinition } from '../../commands/interfaces/CommandDefinition';
import { CommandEntity } from '../../commands/interfaces/entity/CommandEntity';
export declare class ReplyCommand implements CommandEntity {
    name: string;
    api: ComponentAPI;
    parent: typeof CommandManager;
    private readonly pm;
    definition: CommandDefinition;
    execute(ctx: AnyCommandContext, { response }: {
        response: string;
    }): Promise<unknown>;
}
