import type { PrototypeStruct } from '../index.js';
interface Union<T> {
    union(other: Set<T>): T[];
}
export declare const union: PrototypeStruct;
declare global {
    interface Set<T> extends Union<T> {
    }
}
export {};
//# sourceMappingURL=union.d.ts.map