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