import { IError } from '../../core/errors'; import { ICommandResult } from './command-result.interface'; export declare abstract class CommandResult implements ICommandResult { data: any; private theErrors; isSuccess(): boolean; addError(info: IError): void; getAllErrors(): IError[]; getFirstError(): IError | null; }