import type { PrototypeStruct } from '../index.js';
interface Iter<T> {
    iter(): IterableIterator<T>;
}
export declare const iter: PrototypeStruct;
declare global {
    interface Set<T> extends Iter<T> {
    }
}
export {};
//# sourceMappingURL=iter.d.ts.map