import type { PrototypeStruct } from '../index.js';
interface IsDisjoint<T> {
    isDisjoint(other: Set<T>): boolean;
}
export declare const isDisjoint: PrototypeStruct;
declare global {
    interface Set<T> extends IsDisjoint<T> {
    }
}
export {};
//# sourceMappingURL=is-disjoint.d.ts.map