export interface ICommand {
    execute: () => any;
    [k: string]: any;
}
export declare type CommandItem = ICommand | ICommand['execute'];
//# sourceMappingURL=types.d.ts.map