/** * Find power-set of a set using BITWISE approach. */ export default function bwPowerSet(originalSet: string[]): string[][];