import {default as ObliteratorIterator} from './iterator.js';

export default function powerSet<T>(array: Array<T>): ObliteratorIterator<Array<T>>;
