import { ICommand } from '../interfaces/icommand';
export declare class Command<T> implements ICommand<T> {
    execute: (value: T) => void;
}
