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