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