import BaseError from './base-error'; /** * A wrapper for multiple Errors * * @param errors The aggregated errors that occurred */ declare class AggregateError extends BaseError { /** the aggregated errors that occurred */ readonly errors: Array; constructor(errors: Array); toString(): string; } export default AggregateError;