import { Command } from '../';
import { Selector } from '../../arguments';
export declare class KillCommand extends Command<'kill', [Selector]> {
    constructor(target: Selector);
}
export declare function kill(target: Selector): KillCommand;
declare module '../' {
    interface CommandContext {
        kill: typeof kill;
    }
}
