export declare class AggregateError extends Error { readonly errors: Error[]; constructor(errors: Error[], message?: string, options?: ErrorOptions); } export declare function isAggregateError(error: Error): error is AggregateError;