declare function hasIntersection(arrayA: string[], arrayB: string[]): boolean;
declare function hasFullIntersection(groupsRequested: string[], availableGroups: string[]): boolean;
declare function hasAnyProperty(obj: any, properties: string[]): boolean;
declare function hasAllProperties(obj: any, properties: string[]): boolean;
export { hasIntersection, hasFullIntersection, hasAnyProperty, hasAllProperties, };
