/** * Determines if a set is a subset of another */ export declare const isSubset: (superSet: any, subSet: any) => boolean;