declare class AggregateErrorPolyfill extends Error { #private; get name(): string; get errors(): unknown[]; constructor(errors: Iterable, message?: string); } export declare const AggregateError: typeof AggregateErrorPolyfill; export {};