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